forked from neutrons/mantid_total_scattering
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 924 Bytes
/
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
from setuptools import setup, find_packages
import versioneer
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='mantid_total_scattering',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author='Marshall, Elliot, Pete',
author_email='[email protected]',
url='https://github.com/marshallmcdonnell/mantid_total_scattering',
description='Mantid Total Scattering Reduction',
long_description_content_type="text/markdown",
license='GPL License (version 3)',
entry_points={
'console_scripts': [
"mantidtotalscattering = total_scattering.cli:main"
]
},
install_requires=['six>=1.9'],
packages=find_packages(),
# package_data={'': ['*.ui', '*.png', '*.qrc', '*.json']},
include_package_data=True,
test_suite='tests',
tests_require=['pytest']
)