-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (42 loc) · 1.34 KB
/
Copy pathsetup.py
File metadata and controls
48 lines (42 loc) · 1.34 KB
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
42
43
44
45
46
47
48
# -*- coding: utf-8 -*-
"""
Package setup
"""
import sys
import os
import io
import setuptools
from setuptools import setup
def read(fname):
with io.open(
os.path.join(os.path.dirname(__file__), fname), encoding="utf-8"
) as _in:
return _in.read()
if __name__ == "__main__":
import versioneer
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="kitchen",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Manipulate counts matrix files and cook scRNA-seq data from command line",
long_description=long_description,
author="Cody Heiser",
author_email="codyheiser49@gmail.com",
url="https://github.com/codyheiser/kitchen",
install_requires=read("requirements.txt").splitlines(),
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering",
],
python_requires=">=3.6",
entry_points={
"console_scripts": ["kitchen = kitchen.kitchen:main"]
},
)