-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 812 Bytes
/
setup.py
File metadata and controls
26 lines (22 loc) · 812 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
# Thanks: http://pythonhosted.org/an_example_pypi_project/setuptools.html
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "spatial_transcriptomics_viz",
version = "0.0.1",
author = "Aaron Watters",
author_email = "awatters@simonsfoundation.org",
description = ("visualization aids for spatial transcriptomics."),
license = "BSD",
keywords = "jupyter widget genomics",
url = "http://packages.python.org/spatial_transcriptomics_viz",
packages=['spatial_transcriptomics_viz'],
#package_data={'jp_gene_viz': ['*.js']},
long_description=read('README.md'),
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
],
)