forked from eea/sparql-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (32 loc) · 1.12 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
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
NAME = 'sparql-client'
VERSION = open('version.txt').read().strip()
setup(name=NAME,
version=VERSION,
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Database',
'Topic :: Software Development :: Libraries :: Python Modules',
],
description='Python API to query a SPARQL endpoint',
long_description = open('README.rst').read() + "\n\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
author='Soren Roug',
author_email='soren.roug@eea.europa.eu',
url='http://www.eionet.europa.eu/software/sparql-client',
py_modules =['sparql'],
install_requires=[
'pycurl',
],
)