-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (26 loc) · 886 Bytes
/
setup.py
File metadata and controls
executable file
·30 lines (26 loc) · 886 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
28
29
30
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
EXCLUDE_FROM_PACKAGES = []
install_requires = ['sdklib==1.10.3', 'PySocks']
setuptools.setup(
name='diario',
version='0.2.1',
author='ElevenPaths',
author_email='innovationlab@11paths.com',
description='DIARIO SDK',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://diario.e-paths.com/index.html',
install_requires=install_requires,
keywords=['sdk', 'api', 'diario'],
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
packages=setuptools.find_packages(exclude=EXCLUDE_FROM_PACKAGES),
zip_safe=False
)