forked from damhuman/Etsy3Py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 938 Bytes
/
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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='etsy3py',
description='ETSY API v3 Client',
long_description=long_description,
long_description_content_type="text/markdown",
version='0.0.3',
license='MIT',
author="Anton Dasyuk",
author_email='anton.dasyuk@gmail.com',
maintainer="Ali-Abdulla Al-Sayed",
maintainer_email="alexukr1999@gmail.com",
packages=find_packages('src'),
package_dir={'': 'src'},
url='https://github.com/damhuman/Etsy3Py',
keywords=['etsy', 'api', 'client', 'etsy v3 api'],
install_requires=[
'requests',
'requests-oauthlib',
'mypy',
],
python_requires='>=3.6',
classifiers=[
"Programming Language :: Python :: 3",
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
]
)