forked from norcalrdf/pymantic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
60 lines (54 loc) · 1.73 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
from setuptools import setup, find_packages
from pymantic import version
tests_require = [
'betamax',
]
testing_extras = tests_require + [
'nose',
'coverage',
]
from io import open
f = open('README.rst', mode='r', encoding='utf8')
setup(name='pymantic',
version=version,
description="Semantic Web and RDF library for Python",
long_description=f.read(),
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',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
], # 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='https://github.com/norcalrdf/pymantic/',
license='BSD',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
test_suite='nose.collector',
install_requires=[
'requests',
'lxml',
'pytz',
'rdflib',
'lark-parser>=0.7.0',
'pyld',
],
extras_require={
'testing': testing_extras,
},
entry_points="""
# -*- Entry points: -*-
""",
scripts=[
'pymantic/scripts/named_graph_to_nquads',
'pymantic/scripts/bnf2html',
])