-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·50 lines (46 loc) · 1.37 KB
/
setup.py
File metadata and controls
executable file
·50 lines (46 loc) · 1.37 KB
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
48
49
50
#!/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='1.0.0b1',
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,<3",
],
platforms=["Any"],
python_requires='>=3.6, <3.10',
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"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'],
},
entry_points={
"console_scripts": [
"egnyte=egnyte.__main__:main",
],
},
)
if __name__ == '__main__':
setup(**args)