-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 823 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 823 Bytes
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
from setuptools import setup
install_requires = []
with open('./requirements.txt') as requirements_txt:
requirements = requirements_txt.read().strip().splitlines()
for requirement in requirements:
if requirement.startswith('#'):
continue
elif requirement.startswith('-e '):
install_requires.append(requirement.split('=')[1])
else:
install_requires.append(requirement)
setup(
name='cove',
version='0.0.0',
author='Open Data Services',
author_email='code@opendataservices.coop',
scripts=['manage.py'],
url='https://github.com/OpenDataServices/cove',
description='',
classifiers=[
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
],
install_requires=install_requires,
)