forked from juju/juju-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (31 loc) · 1 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
36
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.14.1",
description="jujugui",
classifiers=[
"Programming Language :: Python",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
author="Juju UI Engineering Team",
url="https://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
""",
)