-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·34 lines (26 loc) · 1.16 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
#!/usr/bin/env python
from setuptools import setup
setup(name="sparqlhttp",
version="1.14",
description="HTTP SPARQL server and client for twisted and rdflib",
author="Drew Perttula",
author_email="[email protected]",
url="http://projects.bigasterisk.com/sparqlhttp/",
download_url="http://projects.bigasterisk.com/sparqlhttp/sparqlhttp-1.14.tar.gz",
# this seems to be making other projects break, especially with buildout
#setup_requires=['setuptools_trial >= 0.5'],
install_requires=['python-dateutil'],
packages=['sparqlhttp'],
data_files=[('', ['doc.html'])],
package_data={'sparqlhttp' : ['query']},
test_suite="sparqlhttp.test",
classifiers=[ # http://www.python.org/pypi?:action=list_classifiers
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Programming Language :: Python",
"Topic :: Database",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)