-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (34 loc) · 1.04 KB
/
setup.py
File metadata and controls
37 lines (34 loc) · 1.04 KB
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
#!/usr/bin/env python
from distutils.core import setup
MODULE = 'pycurlbrowser'
execfile(MODULE + '/version.py')
setup(
name=MODULE,
version=__version__,
description="A minimal browser based on pycurl/lxml",
long_description=open("README").read(),
author="Adam Piper",
author_email="adam@ahri.net",
license="AGPLv3",
url="https://github.com/ahri/pycurlbrowser",
packages=[MODULE, MODULE + '.backend'],
platforms='any',
install_requires=[
],
test_requires=[
'pycurl>=7.18',
'lxml>=2.3',
'simplejson>=2.2.1',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
zip_safe=False,
)