forked from Undefined-User/gfwlist2pac
-
Notifications
You must be signed in to change notification settings - Fork 41
/
setup.py
30 lines (28 loc) · 851 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
with open('README.rst') as f:
long_description = f.read()
setup(
name="gfwlist2pac",
version="1.1.3",
license='MIT',
description="convert gfwlist2pac to pac",
author='clowwindy',
author_email='[email protected]',
url='https://github.com/clowwindy/gfwlist2pac',
packages=['gfwlist2pac', 'gfwlist2pac.resources'],
package_data={
'gfwlist2pac': ['README.rst', 'LICENSE', 'resources/*']
},
install_requires=[],
entry_points="""
[console_scripts]
gfwlist2pac = gfwlist2pac.main:main
""",
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
long_description=long_description,
)