This repository was archived by the owner on Jan 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (40 loc) · 1.34 KB
/
setup.py
File metadata and controls
40 lines (40 loc) · 1.34 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
35
36
37
38
39
40
from setuptools import setup
setup(name="OldMan",
author="Benjamin Cogrel",
author_email="[email protected]",
url="https://github.com/oldm/oldman",
version="0.2",
description="Object Linked Data Mapper",
long_description=open('README.rst').read(),
packages=['oldman',
'oldman.model',
'oldman.resource',
'oldman.parsing',
'oldman.parsing.schema',
'oldman.rest',
'oldman.store',
'oldman.schema',
'oldman.utils',
'oldman.validation'
],
include_package_data=True,
#zip_safe = False,
install_requires=['rdflib',
'rdflib-jsonld',
'SPARQLWrapper',
'validate_email',
'dogpile.cache',
'requests',
'negotiator'
],
license="BSD",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries',
]
)