-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
executable file
·49 lines (47 loc) · 2.05 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
"""A setuptools based setup module.
See:
https://packaging.python.org/guides/distributing-packages-using-setuptools/
https://github.com/pypa/sampleproject
"""
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="bycon",
version="2.0.13",
description="A Python-based environment for the Beacon v2 genomics API",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/progenetix/bycon",
author="Michael Baudis",
author_email="[email protected]",
classifiers=[
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only"
],
keywords="genomics, Beacon",
package_dir={'':"."},
packages=find_packages(where="."),
setup_requires=['setuptools_scm'],
include_package_data=True,
package_data={'bycon': ['**/*.yaml', '**/*.txt', '**/*.json']},
python_requires=">=3.9, <4",
install_requires=["base36", "isodate", "Cython", "json_ref_dict", "liftover", "numpy", "progress", "pyhumps", "pymongo", "PyYAML"], # Optional
project_urls={ # Optional
"Bug Reports": "https://github.com/progenetix/bycon/issues",
"Source": "https://github.com/progenetix/bycon/",
"Helpers": "https://github.com/progenetix/byconaut/",
},
)