-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
41 lines (36 loc) · 1.14 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
from setuptools import setup, find_packages # noqa: H301
NAME = "container-ontology"
VERSION = "1.0.0"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
REQUIRES = [
"rdflib",
"urllib3 >= 1.25.3",
"python-dateutil",
"owlery-client @ git+https://github.com/rpgoldman/[email protected]#egg=owlery-client",
]
packages = find_packages(where="src", exclude=["catalog_translator", "test", "tests"])
package_dir = {
'': "src",
}
setup(
name=NAME,
version=VERSION,
description="SD2E Container Ontology for PAML",
author="Robert P. Goldman",
author_email="[email protected]",
url="https://github.com/rpgoldman/container-ontology",
python_requires=">=3.6",
install_requires=REQUIRES,
packages=packages,
package_dir=package_dir,
include_package_data=True,
license="Apache",
# long_description="""\
# Owlery provides a web API for an [OWL API](http://owlapi.sourceforge.net)-based reasoner containing a configurable set of ontologies (a \"knowledgebase\"). # noqa: E501
# """
)