-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (35 loc) · 1.06 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
45
46
47
import os
from setuptools import setup, find_packages
version = '1.0.0.dev0'
extras_require = {
'tests': [
'freezegun',
'pytest',
'requests-mock',
],
}
setup(name='opengever.apiclient',
version=version,
description='API Client for OneGov GEVER',
long_description=open('README.rst').read() + '\n'
+ open(os.path.join('docs', 'HISTORY.txt')).read(),
classifiers=[
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='onegov gever opengever api client',
author='4teamwork AG',
author_email='mailto:[email protected]',
url='https://github.com/4teamwork/opengever.apiclient',
license='GPL2',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['opengever', ],
include_package_data=True,
zip_safe=False,
install_requires=[
'PyJWT [crypto]',
'pytz',
'requests',
'setuptools',
],
extras_require=extras_require)