forked from pangenome/spodgi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (49 loc) · 1.48 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
import sys
from setuptools import setup
project = "spodgi"
version = "0.0.2"
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="[email protected]",
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.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
"Natural Language :: English",
],
python_requires='>=3.6',
install_requires=[
"Click>=7.0.0",
"rdflib>=4.0"
],
setup_requires=[
],
tests_require=[
"pytest"
],
entry_points={
'rdf.plugins.store': [
'OdgiStore = spodgi.OdgiStore'
]
}
)