forked from cellatlas/cellatlas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (40 loc) · 1.37 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
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="cellatlas",
version="0.0.0",
url="https://github.com/cellatlas/cellatlas",
author="Sina Booeshaghi",
author_email="sbooeshaghi@gmail.com",
maintainer="Sina Booeshaghi",
maintainer_email="sbooeshaghi@gmail.com",
description="", # 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": ["cellatlas=cellatlas.main:main"],
},
classifiers=[
"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",
],
)