-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
28 lines (25 loc) · 973 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
from setuptools import setup, find_packages
from pathlib import Path
setup(
name='ddqc',
version='0.3.0',
description='Description',
url='https://github.com/ayshwaryas/ddqc',
author='Mikhail Alperovich and Ayshwarya Subramanian',
author_email='[email protected]',
license='BSD 2-clause',
packages=find_packages(),
install_requires=[r.strip() for r in Path("requirements.txt").read_text("utf-8").splitlines()],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
],
keywords="single cell/nucleus quality control",
)