-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
43 lines (40 loc) · 1.34 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
import sys, os
from setuptools import setup
from pymantic import version
setup(name='pymantic',
version=version,
description="Semantic Web and RDF library for Python",
long_description="""""",
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Text Processing :: Markup',
], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='RDF N3 Turtle Semantics Web3.0',
author='Gavin Carothers, Nick Pilon',
author_email='[email protected], [email protected]',
url='http://github.com/oreillymedia/pymantic',
license='BSD',
packages=['pymantic'],
include_package_data=True,
zip_safe=False,
test_suite='nose.collector',
install_requires=[
'httplib2',
'lxml',
'mock_http',
'pytz',
'simplejson',
'lepl',
'rdflib'
],
entry_points="""
# -*- Entry points: -*-
""",
scripts = [
'pymantic/scripts/named_graph_to_nquads',
'pymantic/scripts/bnf2html',
],
)