forked from DiamondLightSource/python-hrpd-rebin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 734 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
print(find_packages())
setup(
name="hrpdrebin",
version="1.2",
description='High-resolution powder diffraction rebin',
author="Peter Chang",
author_email="scientificsoftware@diamond.ac.uk",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3.6",
],
packages=find_packages(),
install_requires=['numpy>=1.6', 'scisoftpy>=2.17'],
entry_points={'console_scripts': ['rebin = hrpdrebin.maincmd:main'],
'gui_scripts': ['rebin-gui = hrpdrebin.mainui:main']},
url='https://github.com/DiamondLightSource/python-hrpd-rebin',
)