-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 1.14 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
import setuptools
requirements = ["numpy", "pandas"]
setuptools.setup(
name="pyEGAF",
version="1.0.0",
url="https://github.com/AaronMHurst/python_egaf",
author="Aaron M. Hurst",
author_email="[email protected]",
description="Allows for interaction, manipulation, and analysis of thermal-neutron capture gamma-ray data from the EGAF library.",
long_description=open('README.md').read(),
license_files=('LICENSE'),
#packages=setuptools.find_packages(),
packages=setuptools.find_namespace_packages(),
#install_requires=[],
install_requires=requirements,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Physics',
],
include_package_data=True,
package_data={'': ['EGAF_JSON/*.json', 'EGAF_RIPL/*.dat', 'EGAF_ENSDF/*.ens']},
)