-
Notifications
You must be signed in to change notification settings - Fork 47
/
setup.py
executable file
·30 lines (27 loc) · 870 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
VERSION = '4.0.2'
with open("README.md", "r", encoding="utf-8") as fp:
long_description = fp.read()
setup(name='pqi',
version=VERSION,
description="Fast switching PyPi mirror image source",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='python、PyPi source、terminal',
author='HangfengYang',
author_email='yhf5fhy@gmail.com',
url='https://github.com/yhangf/PyQuickInstall',
license='MIT',
packages=["PQI"],
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
zip_safe=True,
install_requires=[
'docopt',
],
entry_points={
'console_scripts':[
'pqi = PQI.pqi:main'
]
},
)