-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
29 lines (26 loc) · 1.08 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
#!/usr/bin/env python
from setuptools import setup, find_packages # This setup relies on setuptools since distutils is insufficient and badly hacked code
version = '1.0.0'
author = 'Pascal Wolf'
author_email = '[email protected]'
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='irrad_spectroscopy',
version=version,
description='Gamma and X-ray spectroscopy as well as dose rate calculations of radioactive samples.',
url='https://github.com/SiLab-Bonn/irrad_spectroscopy',
license='MIT License',
long_description='',
author=author,
maintainer=author,
author_email=author_email,
maintainer_email=author_email,
packages=find_packages(),
setup_requires=['setuptools'],
install_requires=required,
include_package_data=True, # accept all data files and directories matched by MANIFEST.in or found in source control
package_data={'': ['README.*', 'VERSION'], 'docs': ['*'], 'examples': ['*']},
keywords=['silicon', 'irradiation', 'radioactivity', 'gamma', 'spectroscopy'],
platforms='any'
)