-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 962 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
from setuptools import setup, find_packages
from genebe import version
setup(
name="genebe",
version=version.__version__,
packages=find_packages(),
install_requires=["pymmh3", "tinynetrc", "pandas", "requests", "tqdm", "jsonlines"],
extras_require={
"cpp": ["mmh3", "cyvcf2"],
},
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Piotr Stawinski",
description="GeneBe Client: A user-friendly system for annotating genetic variants",
url="https://github.com/pstawinski/pygenebe",
entry_points={
"console_scripts": [
"genebe=genebe.entrypoint:main",
],
},
classifiers=[
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)