forked from egnyte/python-egnyte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·45 lines (41 loc) · 1.29 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os.path
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), "README.rst"), "rt") as f:
long_description = f.read()
args = dict(
name='egnyte',
version='0.5.3',
author='Egnyte',
author_email='api-support@egnyte.com',
license='MIT',
description='Egnyte Public API SDK',
long_description=long_description,
zip_safe=True,
packages=["egnyte", "egnyte.tests"],
url='https://developers.egnyte.com/',
include_package_data=True,
install_requires=[
"requests>=2.13.0",
"six>=1.10.0"
],
platforms=["Any"],
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
test_suite="egnyte",
extras_require={
'docs': ['sphinx', 'sphinx-argparse'],
},
# TODO: add an entrypoint for a console script, or do we stick with 'python -m egnyte'?
)
if __name__ == '__main__':
setup(**args)