-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 772 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 772 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
27
28
29
from setuptools import setup
version='1.0'
setup(
name='proxychecker',
version=version,
description='Check proxies anonymity',
author='Fabien Reboia',
author_email='srounet@gmail.com',
maintainer='Fabien Reboia',
license='BEARWARE',
url='http://github.com/srounet/qsys',
packages=['proxychecker'],
entry_points={
'console_scripts': [
'proxychecker = proxychecker.script:test_proxy',
]
},
install_requires=[],
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python'
],
)