-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
32 lines (30 loc) · 1.05 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="py3wetransfer",
version="1.0.3",
author="Francois Liot",
author_email="[email protected]",
maintainer="Sander Huijsen",
maintainer_email="[email protected]",
description="A Python 3 wrapper to use WeTransfer API V2 transfer and board",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/fliot/py3wetransfer",
packages=setuptools.find_packages(),
install_requires=[
"requests>=2.7.0"
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP"
],
test_suite='nose.collector',
tests_require=['nose'],
)