-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
30 lines (25 loc) · 901 Bytes
/
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
from setuptools import setup, find_packages
def parse_requirements(requirements):
with open(requirements) as f:
return [l.strip('\n') for l in f if l.strip('\n') and not l.startswith('#')]
requirements = parse_requirements('requirements.txt')
setup(
name='aiohttpretty',
version='19.0.0',
description='AioHTTPretty',
author='Center for Open Science',
author_email='[email protected]',
url='https://github.com/CenterForOpenScience/aiohttpretty',
packages=find_packages(exclude=('tests*', )),
py_modules=['aiohttpretty'],
include_package_data=True,
install_requires=requirements,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)