-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
40 lines (36 loc) · 1.43 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
from pathlib import Path
from setuptools import setup, find_packages
setup(
name='cosg',
version='1.0.1',
description='Accurate and fast cell marker gene identification with COSG',
long_description=Path('README.rst').read_text('utf-8'),
url='https://github.com/genecell/COSG',
download_url='https://github.com/genecell/COSG',
packages=find_packages(exclude=['bin', 'conf', 'data', 'target']),
install_requires=[
l.strip() for l in Path('requirements.txt').read_text('utf-8').splitlines()
],
include_package_data=True,
author='Min Dai',
author_email='[email protected]',
license='BSD 3-Clause License',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Framework :: Jupyter',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Visualization',
],
)
### Refer to https://github.com/theislab/scanpy/blob/master/setup.py