-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathsetup.py
30 lines (28 loc) · 852 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
from setuptools import setup, find_packages
setup(
name="duoshuo-python-sdk",
version="0.1",
description="A Python library for using the duoshuo API",
long_description=open('README.md').read(),
author="Perchouli",
author_email="jp.chenyang@gmail.com",
url="https://github.com/duoshuo/duoshuo-python-sdk",
packages=find_packages(),
package_data={
'duoshuo' : ['*.json',]
},
install_requires=[
'PyJWT',
'requests>=0.14.0'
],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
include_package_data=True,
zip_safe=False,
)