-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (27 loc) · 906 Bytes
/
setup.py
File metadata and controls
32 lines (27 loc) · 906 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
__authors__ = ["E Cappelli, M Glass, M Sanchez del Rio - ESRF ISDD Advanced Analysis and Modelling"]
__license__ = "MIT"
__date__ = "23/11/2016"
from setuptools import setup
#
# memorandum (for pypi)
#
# python setup.py sdist upload
setup(name='crystalpy',
version='0.0.5',
description='Python crystal polarization calcution',
author='Edoardo Cappelli, Mark Glass, Manuel Sanchez del Rio',
author_email='srio@esrf.eu',
url='https://github.com/edocappelli/crystalpy/',
packages=['crystalpy',
'crystalpy.util',
'crystalpy.diffraction',
'crystalpy.polarization',
'crystalpy.examples',
'crystalpy.tests'],
install_requires=[
'numpy',
'scipy',
'mpmath'
],
test_suite='tests'
)