-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
26 lines (24 loc) · 902 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
from setuptools import setup, find_packages
__author__ = 'wddd'
__version__ = '0.3.0'
setup(
name='weibo_api',
version=__version__,
author=__author__,
license='MIT',
url='https://github.com/wdwind/weibo_api/tree/master',
install_requires=['cookiejar', 'mxnet>=1.3.1,<1.6.0', 'pillow', 'requests', 'requests_toolbelt', 'rsa'],
test_requires=[],
include_package_data=True,
keywords='Weibo api',
description='An api for posting weibo (text, image, and video).',
packages=find_packages(exclude=('tests',)),
package_data={'': ['model/*.params', 'model/*.json', 'model/*.pkl']},
classifiers=[
'Development Status :: Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3.7',
],
)