-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
32 lines (30 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
from setuptools import setup, find_packages
setup(name='abc_analysis',
version='0.1.23',
project_urls={'Viessmann': 'https://www.linkedin.com/company/viessmann/',
'Source': 'https://github.com/viessmann/abc_analysis'},
description='ABC analysis with automated limit detection',
long_description=open('readme_pypi.rst').read(),
download_url='https://github.com/viessmann/abc_analysis/archive/v0.1.22.tar.gz',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
],
keywords='abc-analysis abc_analysis Viessmann',
author='Viessmann',
author_email='[email protected]',
license='GNU General Public License v3 (GPLv3)',
packages=find_packages(),
install_requires=[
'pandas>=0.22',
'numpy>=1.14',
'scipy>=1.1.0',
'matplotlib>=2.2.2'
],
include_package_data=True,
zip_safe=False)