forked from juju/juju-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (30 loc) · 1.04 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from setuptools import setup, find_packages
def parse_requirements(filename):
"""Return a list of name|comparator|version."""
with open(filename) as fd:
return [line.strip() for line in fd.readlines()]
install_requires = parse_requirements("requirements.txt")
tests_requires = parse_requirements("test-requirements.txt")
setup(name='jujugui',
version='2.5.0',
description='jujugui',
classifiers=[
"Programming Language :: Python",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
author='Juju UI Engineering Team',
url='http://github.com/juju/juju-gui',
packages=find_packages(),
include_package_data=True, # Refer to MANIFEST.in
zip_safe=False,
install_requires=install_requires,
tests_require=tests_requires,
test_suite="jujugui",
entry_points="""\
[paste.app_factory]
main = jujugui:main
test = jujugui.test:main
""",
)