-
Notifications
You must be signed in to change notification settings - Fork 75
/
setup.py
49 lines (44 loc) · 1.56 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
from setuptools import setup, find_packages
from gget.__init__ import __version__, __author__, __email__
def read(path):
with open(path, "r") as f:
return f.read()
long_description = read("README.md")
setup(
name="gget",
version=__version__,
license="BSD-2",
author=__author__,
author_email=__email__,
maintainer=__author__,
maintainer_email=__email__,
description="Efficient querying of genomic databases.",
long_description=long_description,
long_description_content_type="text/markdown",
zip_safe=False,
packages=find_packages(include=["gget", "gget.*"]),
include_package_data=True,
python_requires=">=3.7",
install_requires=open("requirements.txt").read().strip().split("\n"),
setup_requires=open("requirements.txt").read().strip().split("\n"),
url="https://github.com/pachterlab/gget",
keywords="gget",
entry_points={
"console_scripts": ["gget=gget.main:main"],
},
classifiers=[
"Environment :: Console",
"Framework :: Jupyter",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Utilities",
],
)