-
Notifications
You must be signed in to change notification settings - Fork 47
/
setup.py
46 lines (41 loc) · 1.61 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
from setuptools import find_packages, setup
def read(path):
with open(path, "r") as f:
return f.read()
long_description = read("README.md")
setup(
name="ffq",
version="0.3.1",
url="https://github.com/pachterlab/ffq",
author="Kyung Hoi (Joseph) Min, Sina Booeshaghi, Ángel Gálvez Merchán",
maintainer="Pachter Lab",
maintainer_email="[email protected]",
description="A command line tool that makes it easier to find sequencing data from SRA / GEO / ENCODE / ENA / EBI-EMBL / DDBJ / Biosample.", # noqa
long_description=long_description,
long_description_content_type="text/markdown",
keywords="",
python_requires=">=3.6",
license="MIT",
packages=find_packages(exclude=("tests", "tests.*")),
zip_safe=False,
include_package_data=True,
install_requires=read("requirements.txt").strip().split("\n"),
entry_points={
"console_scripts": ["ffq=ffq.main:main"],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Utilities",
],
)