-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
57 lines (51 loc) · 1.9 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
48
49
50
51
52
53
54
55
56
57
import os
from setuptools import setup
from setuptools import find_packages
__version__ = None
with open("src/wetransfer/version.py", "r") as f:
exec(f.read())
# Allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
# Get proper long description for package
with open("README.md", "r") as f:
description = f.read()
setup(
name="wetransfer",
version=__version__,
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=True,
description="A Python SDK for WeTransfer's Public API",
long_description=description,
long_description_content_type='text/markdown',
url="https://github.com/astrikos/wetransfer-python-sdk",
download_url="https://github.com/astrikos/wetransfer-python-sdk",
author="Andreas Strikos",
author_email="[email protected]",
maintainer="Andreas Strikos",
maintainer_email="[email protected]",
test_suite="tests",
install_requires=[
"requests>=2.7.0",
"six"
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP",
],
)