-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·37 lines (32 loc) · 1.02 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
import sys
if sys.version_info < (3, 7):
sys.exit('simba requires Python >= 3.7')
from setuptools import setup, find_packages
from pathlib import Path
version = {}
with open("simba/_version.py") as fp:
exec(fp.read(), version)
setup(
name='simba',
version=version['__version__'],
author='Huidong Chen',
athor_email='hd7chen AT gmail DOT com',
license='BSD',
description='SIngle-cell eMBedding Along with features',
long_description=Path('README.md').read_text('utf-8'),
long_description_content_type="text/markdown",
url='https://github.com/pinellolab/simba',
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
python_requires='>=3.7',
install_requires=[
x.strip() for x in
Path('requirements.txt').read_text('utf-8').splitlines()
],
include_package_data=True,
package_data={"simba": ["data/gene_anno/*.bed"]}
)