forked from wen-long/gfwlist2pac
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 735 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 735 Bytes
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
setup(
name="gfwlist2pac",
version="1.0.1",
license='MIT',
description="convert gfwlist2pac to pac",
author='clowwindy',
author_email='clowwindy42@gmail.com',
url='https://github.com/clowwindy/gfwlist2pac',
packages=['gfwlist2pac', 'gfwlist2pac.resources'],
package_data={
'gfwlist2pac': ['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',
],
)