-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
31 lines (26 loc) · 913 Bytes
/
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
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
with open(here + "/README.md", "r") as fh:
long_description = fh.read()
install_requires = ["rdflib-jsonld", "SQLAlchemy"]
test_requires = ["html5lib", "pyRdfa3", "pytest", "rdflib"]
setup(
name="ontodev-gizmos",
description="Gizmos for ontology development",
long_description=long_description,
long_description_content_type="text/markdown",
version="0.3.2",
author="James A Overton",
author_email="james@overton.ca",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License",
],
install_requires=install_requires,
setup_requires=["pytest-runner"],
tests_require=test_requires,
test_suite="pytest",
packages=find_packages(exclude="tests"),
)