forked from ZhuangLab/storm-control
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (39 loc) · 1020 Bytes
/
setup.py
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
49
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
import distutils.cmd
import platform
import os
import setuptools.command.build_py
import subprocess
import sys
from setuptools import setup, find_packages
version = "2.0"
description = "STORM microscope control code."
long_description = ""
setup(
name='storm_control',
version=version,
description=description,
long_description=long_description,
author='Hazen Babcock',
author_email='hbabcock at fas.harvard.edu',
url='https://github.com/ZhuangLab/storm-control',
zip_safe=False,
packages=find_packages(),
package_data={},
exclude_package_data={},
include_package_data=True,
requires=[],
setup_requires=[],
tests_require=[],
license="",
keywords='storm,microscopy',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: MIT',
'Programming Language :: C',
'Programming Language :: Python :: 3',
],
)