-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
42 lines (40 loc) · 1.17 KB
/
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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='polaris',
version='0.1',
description='Polarized microscope simulation tool.',
long_description=readme(),
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Physics',
],
url='https://github.com/talonchandler/polaris',
author='Talon Chandler',
author_email='[email protected]',
license='MIT',
packages=['polaris', 'polaris.harmonics', 'polaris.micro'],
include_package_data=True,
zip_safe=False,
test_suite='tests',
install_requires=[
'numpy',
'matplotlib',
'scipy',
'sympy',
'pytest',
'setuptools-git',
'imageio',
'vtk',
'tifffile',
'imagecodecs',
'joblib',
'dipy==1.4.1',
'fury==0.7.1',
]
)