-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (25 loc) · 736 Bytes
/
setup.py
File metadata and controls
32 lines (25 loc) · 736 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
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==3.10.1',
'pytest-xdist',
'nose',
'mock'
],
entry_points={
'console_scripts': [
'diffcalc=diffcmd.diffcalc_launcher:main',
],
},
)