-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
41 lines (38 loc) · 978 Bytes
/
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
from setuptools import setup
import versioneer
requirements = [
# package requirements go here
'cutadapt==2.10',
'pysam==0.16.0.1',
'scipy==1.5.3',
'numpy==1.19.4',
'pandas==1.1.4',
'jinja2==2.11.2',
'matplotlib==3.3.2',
'click==7.1.2',
'scanpy==1.6.0',
'leidenalg==0.8.2',
'louvain==0.6.1'
]
setup(
name='SCOPE-tools',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Single Cell Omics Preparation Entity tools",
license="Apache",
author="Singleron Biotechnologies",
author_email='[email protected]',
url='https://github.com/SingleronBio/SCOPE-tools',
packages=['scopetools'],
entry_points={
'console_scripts': [
'scope=scopetools.cli:cli'
]
},
install_requires=requirements,
include_package_data=True,
keywords='SCOPE-tools',
classifiers=[
'Programming Language :: Python :: 3.7',
]
)