-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (34 loc) · 1.22 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
32
33
34
35
from setuptools import setup, find_packages
setup(
name='GammaLab',
version='0.8.4',
description='Toolkit for soundcard gamma ray spectroscopy',
author='F.I. Pelupessy',
url='https://github.com/ipelupessy/gammalab',
license='GPLv3',
packages=find_packages('src'),
package_data={},
package_dir={'' : 'src'},
install_requires=['wheel', 'numpy', 'SoundCard', 'matplotlib'],
python_requires='>=3.6',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3) ',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering :: Physics',
],
long_description=open('README.rst').read(),
entry_points={
"console_scripts" : [
"gammalab = gammalab.__main__:gammalab_main",
"gammalab-calibration-calc = gammalab.__main__:calibration_main",
]
}
)