forked from STOmics/cellbin2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (30 loc) · 1 KB
/
Copy pathsetup.py
File metadata and controls
36 lines (30 loc) · 1 KB
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
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requires = f.read().splitlines()
# Parse version number from cellbin2/__init__.py:
with open('cellbin2/__init__.py') as f:
info = {}
for line in f:
if line.startswith('__version__'):
exec(line, info)
break
print(f"Version: {info['__version__']}")
setup(
name='cellbin2',
version=info['__version__'],
description='A framework for generating single-cell gene expression data',
long_description_content_type="text/markdown",
long_description=open('README.md').read(),
packages=find_packages(),
author='cell bin research group',
author_email='bgi@genomics.cn',
url='https://github.com/STOmics/cellbin2',
install_requires=requires,
python_requires='==3.8.*',
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
],
)