forked from nilp0inter/django-proxylist
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
47 lines (45 loc) · 1.44 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='django-proxylist-for-grab',
version="0.5.1",
description='Proxy-list management application for Django',
keywords='django proxylist grab',
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: Proxy Servers',
],
author="GoTLiuM InSPiRiT",
author_email='[email protected]',
url='https://github.com/gotlium/django-proxylist',
license='GPL v3',
packages=find_packages(exclude=['demo']),
package_data={'proxylist': [
'data/agents.txt',
'templates/proxylist/admin/*.html',
'locale/*/LC_MESSAGES/*.po'
]},
include_package_data=True,
zip_safe=False,
install_requires=[
'django-countries>=1.5',
'python-dateutil',
'multiprocessing',
'pygeoip',
'celery',
'pycurl',
'lxml',
'grab',
]
)