forked from pnnl/deimos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (27 loc) · 878 Bytes
/
Copy pathsetup.py
File metadata and controls
33 lines (27 loc) · 878 Bytes
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
from setuptools import find_packages, setup
with open('deimos/__init__.py') as f:
exec([x for x in f.readlines() if '__version__' in x][0])
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
with open('requirements.txt') as f:
requirements = f.read()
pkgs = find_packages(exclude=('examples', 'docs', 'tests'))
setup(
name='deimos',
version=__version__,
description='Data Extraction for Integrated Multidimensional Spectrometry',
long_description=readme,
author='Sean M. Colby',
author_email='sean.colby@pnnl.gov',
url='https://github.com/pnnl/deimos',
install_requires=requirements,
python_requires='==3.8.*',
license=license,
packages=pkgs,
entry_points={
'console_scripts': ['deimos = deimos.cli:main']
},
package_data={'': ['*.smk', '*.yml']},
)