-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 1.02 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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(
name='babelscan',
version='0.8.9',
packages=['babelscan'],
url='https://github.com/DanPorter/babelscan',
license='Apache 2.0',
author='dgporter',
author_email='dan.porter@diamond.ac.uk',
description='BabelScan is a format independent data structure for holding different types of data from a scan file',
long_description_content_type='text/markdown',
long_description=readme(),
keywords=[
'nexus', 'nexusformat', 'hdf', 'scan', 'data',
'crystal', 'diffraction', 'crystallography', 'science',
'x-ray', 'neutron'
],
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.7',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Physics',
'Development Status :: 3 - Alpha',
],
install_requires=['numpy', 'h5py', 'imageio', 'python-dateutil']
)