-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 689 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 689 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
from setuptools import setup, find_packages
setup(
name='specsnake',
version='0.0.2',
packages=find_packages(),
url='https://github.com/Darkskald/specsnake',
license='MIT',
author='Darkskald',
author_email='floriandavid.lange@web.de',
description='',
include_package_data=True,
install_requires=[
'Click',
'matplotlib>=3.3.1',
'numpy>=1.18.5',
'pandas>=1.1.1',
'peakutils>=1.3.3',
'scipy>=1.5.2',
'setuptools>=49.6.0',
'click>=7.1.2',
'sphinx-autodoc-typehints',
],
entry_points={
'console_scripts':
['specsnake=specsnake.cli:cli']}
)
# todo: Dockerize