summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2017-07-24 14:55:36 -0400
committerKali Kaneko <kali@futeisha.org>2017-07-24 14:57:06 -0400
commit549e1eca74432948b7f22eee0646acff23d6157f (patch)
treeae55c9ee7b0daf9687a23baafcf84d78c1b7ea5e
parentd4685fdb0a8a28ffa5b30e5b548bdfc318e5a5a8 (diff)
[pkg] modify setup.py info after fork
-rw-r--r--service/setup.py15
-rw-r--r--web-ui/setup.py13
2 files changed, 15 insertions, 13 deletions
diff --git a/service/setup.py b/service/setup.py
index d40366f3..09c21955 100644
--- a/service/setup.py
+++ b/service/setup.py
@@ -1,6 +1,7 @@
#!/usr/bin/env python
#
-# Copyright (c) 2014 ThoughtWorks, Inc.
+# Copyright (c) 2014-2017 ThoughtWorks, Inc.
+# Copyright (c) 2017 LEAP Encryption Access Project
#
# Pixelated is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
@@ -28,13 +29,13 @@ def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
-setup(name='pixelated-user-agent',
- version='0.1.%s' % timestamp,
- description='API to serve the pixelated front-end requests',
+setup(name='leap.pixelated',
+ version='1,0beta2.%s' % timestamp,
+ description='Twisted API with a RESTful service for the Pixelated front-end.',
long_description=read('README.md'),
- author='Thoughtworks',
- author_email='pixelated-team@thoughtworks.com',
- url='https://github.com/pixelated',
+ author='LEAP Encryption Access Project',
+ author_email='info@leap.se',
+ url='https://github.com/leapcode/pixelated-user-agent',
packages=[
'pixelated',
'pixelated.adapter',
diff --git a/web-ui/setup.py b/web-ui/setup.py
index 263debd8..2f1266f7 100644
--- a/web-ui/setup.py
+++ b/web-ui/setup.py
@@ -23,12 +23,13 @@ import time
now = datetime.datetime.now()
timestamp = time.strftime('%Y%m%d', now.timetuple())
-setup(name='pixelated-www',
- version='0.1.%s' % timestamp,
- description='Pixelated User Agent UI',
- author='Thoughtworks',
- author_email='pixelated-team@thoughtworks.com',
- url='http://pixelated-project.github.io',
+setup(name='leap.pixelated-www',
+ version='1.0beta2.%s' % timestamp,
+ description='Static Assets for the Pixelated User Agent UI',
+ author='LEAP Encryption Access Project',
+ author_email='info@leap.se',
+ url='http://github.com/leapcode/pixelated-user-agent',
+ namespace_packages=['leap'],
packages=['pixelated_www'],
package_data={
'': ['404.html',