-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·36 lines (32 loc) · 889 Bytes
/
setup.py
File metadata and controls
executable file
·36 lines (32 loc) · 889 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
34
35
36
#!/usr/bin/env python3
import re
from setuptools import setup, find_packages
with open("peakplotter/__init__.py") as f:
version = re.search(r"__version__ = \'(.*?)\'", f.read()).group(1)
setup(
name = "peakplotter",
version = version,
install_requires = [
'click',
'numpy',
'pandas',
'bokeh',
'requests'
],
include_package_data = True,
entry_points = {
'console_scripts': [
'peakplotter = peakplotter.main:cli',
'peakplotter-region = peakplotter.main:cli_region',
'peakplotter-data-setup = peakplotter._data:setup_data',
],
},
# Metadata
author = "Arthur Gilly",
author_email = "arthur.gilly@helmholtz-muenchen.de",
packages = find_packages(),
classifiers = [
"Programming Language :: Python :: 3",
],
python_requires='>=3.6',
)