-
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) · 983 Bytes
/
Copy pathsetup.py
File metadata and controls
39 lines (35 loc) · 983 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
28
29
30
31
32
33
34
35
36
37
38
39
from importlib.metadata import entry_points
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
import os
if os.name =='nt':
os.environ["KMP_DUPLICATE_LIB_OK"]="TRUE"
setup(
name='umapexplore',
version='0.12',
description='Set of tools and notebooks for UMAP exploration',
long_description=readme(),
classifiers=[
'Development Status :: Number - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8'
],
keywords='datascience cellprofiler',
url='https://github.com/SextonLab/UMAP-Explorer',
author='bhalliga',
author_email='bhalliga@med.umich.edu',
license='MIT',
packages=['explorer'],
entry_points = {
# 'console_scripts' : []
},
install_requries=[
'sqlite3', 'umap-learn'
],
dependency_links=[],
include_package_data=True,
zip_safe=False,
test_suite='nose.collector',
)