-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 765 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 765 Bytes
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# E. N. Aslinger
from setuptools import setup, find_packages
import pathlib
must_test = [] # tests required
# must_have = ['scanpy', 'pertpy', 'pandas', 'numpy'] # dependencies
must_have = [] # dependencies
pkg_was_here = pathlib.Path(__file__).parent.resolve()
with open('README.md') as info:
readme = info.read()
setup(name='corescpy',
version='0.2.0',
description='scverse single cell workflow',
url='http://github.com/easlinger/corescpy',
author='Elizabeth N. Aslinger',
packages=find_packages(),
install_requires=must_have,
test_suite='tests',
tests_require=['pytest'],
long_description=readme,
zip_safe=False,
python_requires='>=3.6')