forked from fulfilio/etsy-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·33 lines (29 loc) · 760 Bytes
/
setup.py
File metadata and controls
executable file
·33 lines (29 loc) · 760 Bytes
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
#!/usr/bin/python
import os
from setuptools import setup
this_dir = os.path.realpath(os.path.dirname(__file__))
long_description = open(os.path.join(this_dir, 'README.md'), 'r').read()
requirements = [
'httplib2',
'oauth2==1.9.0.post1',
'simplejson',
'requests',
'requests_oauthlib',
]
test_requirements = [
'pytest',
]
setup(
name='pyetsy',
version='0.4.10',
author='Dan McKinley & Fulfil.IO Inc.',
author_email='dan@etsy.com,support@fulfil.io',
description='Python access to the Etsy API',
license='GPL v3',
keywords='etsy api handmade',
packages=['etsy'],
long_description=long_description,
test_suite='test',
install_requires=requirements,
package_data={'etsy': ['README.md']},
)