This commit is contained in:
gac-x04sa
2019-08-16 14:54:56 +02:00
parent 4a9cf08623
commit 74c54dff38
208 changed files with 40866 additions and 130 deletions
+31
View File
@@ -0,0 +1,31 @@
from setuptools import setup, find_packages
setup(
name='diffcalc',
version='2.1',
description='A diffraction condition calculator for X-ray or neutron diffractometer control.',
long_description=open('README.rst').read(),
url='https://github.com/DiamondLightSource/diffcalc',
author='Rob Walton',
author_email='rob.walton@diamond.ac.uk',
license='GNU',
packages=find_packages(exclude=['docs']),
install_requires=[
'numpy',
'ipython',
'pytest',
'pytest-xdist',
'nose'
],
entry_points={
'console_scripts': [
'diffcalc=diffcmd.diffcalc_launcher:main',
],
},
)