forked from KrasnitzLab/SCGV
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (35 loc) · 1.06 KB
/
setup.py
File metadata and controls
39 lines (35 loc) · 1.06 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="scgv",
version="1.1.0",
author="Lubomir Chorbadjiev",
author_email="lubomir.chorbadjiev@gmail.com",
description="SCGV is an interactive graphical tool for single-cell "
"genomics data, with emphasis on single-cell genomics of cancer",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/KrasnitzLab/SCGV",
packages=setuptools.find_packages(
# 'scgv',
exclude=['docs', 'tests']
),
package_data={
'scgv.qtviews': ['icons/*.png'],
},
include_package_data=True,
# package_dir={'':'scgv'},
entry_points={
'console_scripts': [
'scgview=scgv.qtmain:main',
]
},
classifiers=(
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
python_requires='>=3.6',
)