-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (26 loc) · 972 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
from setuptools import setup
with open("README.md", "r",encoding='utf-8') as f:
long_description = f.read()
f.close()
setup(name='iwaratool', # 包名
version='0.1.1', # 版本号
description='批量获取iwara的内容',
long_description=long_description,
author='白色羽毛',
author_email='1665169869@qq.com',
url='http://baiyu.fun',
install_requires=['requests>=2.22.0','setuptools>=16.0'],
license='LGPL-3.0 License',
packages=['iwaratool'],
platforms=["all"],
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Natural Language :: Chinese (Simplified)',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Libraries'
],
)