-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (34 loc) · 1.64 KB
/
setup.py
File metadata and controls
34 lines (34 loc) · 1.64 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
from setuptools import setup, find_packages
setup(name='lodstats',
version='0.4.0',
author = 'Jan Demter',
author_email = 'jan@demter.de',
url = 'http://aksw.org/projects/LODStats',
download_url = 'https://github.com/AKSW/LODStats/zipball/master',
description = 'Gather statistics from RDF files in various formats',
long_description = """
LODStats uses Redland (librdf) to access files adhering to the Resource
Description Framework (RDF) and compute various configurable
statistics about them.
You will need to manually install librdf, i.e.
sudo apt-get install python-librdf for Debian/Ubuntu.
Extending LODStats with custom statistics is easily accomplished.
""",
classifiers = ['Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Environment :: Console',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Utilities',
],
packages=find_packages(),
scripts=['scripts/lodstats'],
package_data={'lodstats': ['rdf/*.rdf']},
include_package_data=True,
install_requires = ['requests', 'bitarray', 'sparqlwrapper'],
test_suite = 'test'
)