-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
53 lines (47 loc) · 1.31 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
import sys
from setuptools import setup
project = "spodgi"
version = "0.0.5"
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name=project,
version=version,
description="rdflib extension adding genome graph ODGI back-end store",
author="Jerven Bolleman",
author_email="me@jerven.eu",
url="http://github.com/JervenBolleman/spdogi",
packages=["spodgi"],
download_url="https://github.com/JervenBolleman/spodgi/master",
license="MIT",
platforms=["any"],
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
"Natural Language :: English",
],
python_requires='>=3.10',
install_requires=[
"Click>=7.0.0",
"rdflib>=7.0.0",
"requests",
"flask"
],
setup_requires=[
],
tests_require=[
"pytest"
],
entry_points={
'rdf.plugins.store': [
'OdgiStore = spodgi.OdgiStore'
]
}
)