-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 1.17 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
from setuptools import setup, find_packages
from setuptools import setup
# Reads the content of your README.md into a variable to be used in the setup below
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
# Read the file `requirements.txt` with the dependencies required
with open("requirements.txt", "rt", encoding="utf-8") as fh:
install_requirements_txt = [line.strip() for line in fh.readlines()]
setup(
name='sctools',
version='0.0.0',
description='Single-cell utilities',
url='https://github.com/ktroule/sctools',
author='Kevin',
author_email='[email protected]',
license='',
packages=['sctools', 'sctools.tools', 'sctools.metrics', 'sctools.visualization',
'sctools.tools.src'],
include_package_data = True,
package_data={'': ['*.csv']},
keywords=['single', 'cell', 'tool'],
install_requires=install_requirements_txt,
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3']
)