-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
executable file
·44 lines (39 loc) · 1.27 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
37
38
39
40
41
42
43
44
from setuptools import find_packages, setup
long_description = open('README.md', 'r').read()
install_requires = ['requests>=2.22.0,<3']
testing_extras = [
'coverage',
'responses',
]
setup(
name='govdelivery',
url='https://github.com/cfpb/govdelivery',
author='CFPB',
author_email='tech@cfpb.gov',
description='Python module for interacting with the GovDelivery API',
long_description=long_description,
long_description_content_type='text/markdown',
license='CC0',
version='1.4.0',
include_package_data=True,
packages=find_packages(),
install_requires=install_requires,
extras_require={
'testing': testing_extras,
},
test_suite='govdelivery.tests',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
'License :: Public Domain',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Topic :: Communications :: Email',
],
zip_safe=False,
)