-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
47 lines (42 loc) · 1.51 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Python packaging."""
import os
from setuptools import setup, find_packages
#: Absolute path to directory containing setup.py file.
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
VERSION = open(os.path.join(here, 'VERSION')).read().strip()
REQUIREMENTS = [
'Django>=2.2.27,<3.3',
'django-anysign>=1.2',
'requests',
# v1.2.0 introduce OAuthlib 3.0.0 seems to be not compatible with Adobe
# oauth server
'requests_oauthlib<1.2.0'
]
if __name__ == '__main__': # Do not run setup() when we import this module.
setup(
name='django-adobesign',
version=VERSION,
description='Django application to manage online signature with '
'AdobeSign.',
long_description=README,
classifiers=[
"Operating System :: POSIX",
'Framework :: Django',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.2',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
keywords='peopledoc anysign adobesign',
author='Peopledoc',
author_email='david.steinberger@people-doc.com',
url='http://github.com/peopledoc/django-adobesign',
packages=find_packages(exclude=['demo']),
include_package_data=True,
zip_safe=True,
install_requires=REQUIREMENTS,
)