-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 862 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
from setuptools import setup
import versioneer
requirements = [
'numpy', 'vtk', 'pandas', 'scipy'
]
setup(
name='smlmvis',
license='MIT',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Superresolution visualization of 3D protein localization data from a range of microscopes",
author="Ben Cardoen",
author_email='bcardoen@sfu.ca',
url='https://github.com/bencardoen/smlmvis',
download_url='https://github.com/bencardoen/smlmvis/archive/v0.1.0.tar.gz',
packages=['smlmvis'],
install_requires=requirements,
keywords='smlmvis',
include_package_data=True,
package_data={'': ['versioneer.py']},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)