forked from jacoblevine/PhenoGraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 707 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 707 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
from setuptools import setup, find_packages
import sys
if sys.version_info.major != 3:
raise RuntimeError("PhenoGraph requires Python 3")
setup(
name="PhenoGraph",
description="Graph-based clustering for high-dimensional single-cell data",
version="1.5.2",
author="Jacob Levine",
author_email="jl3545@columbia.edu",
packages=find_packages(),
package_data={
'': ['louvain/*convert*', 'louvain/*community*', 'louvain/*hierarchy*']
},
include_package_data=True,
zip_safe=False,
url="https://github.com/jacoblevine/PhenoGraph",
license="LICENSE",
long_description=open("README.md").read(),
install_requires=open("requirements.txt").read()
)