-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.py
30 lines (29 loc) · 916 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
setup(
name='spoonproxy',
version='git.latest',
description='A package for building specific Proxy Pool for different Sites.',
packages=find_packages(),
url='https://github.com/Jiramew/spoon',
license='BSD License',
author='Jiramew',
author_email='[email protected]',
maintainer='Jiramew',
maintainer_email='[email protected]',
platforms=["all"],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
"Programming Language :: Python :: 3",
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries'
],
install_requires=[
'requests>=2.18.1',
'lxml>=3.8.0',
'redis>=2.10.5',
'schedule>=0.4.3',
'PyExecJS>=1.4.0',
]
)