forked from muizabdul29/PyBatteryID
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 809 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 809 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
"""Setup for the PyBatteryID package"""
# pylint: disable=E0401
from setuptools import setup, find_packages
with open("README.md", encoding="utf-8") as f:
readme = f.read()
setup(
name='pybatteryid',
version='3.0.1',
author='Muiz Sheikh',
description='Data-driven Battery Model Identification in Python',
long_description=readme,
long_description_content_type='text/markdown',
url="https://github.com/muizabdul29/PyBatteryID",
packages=find_packages(include=['pybatteryid', 'pybatteryid.*']),
install_requires=[
'numpy>=2.1.0',
'cvxopt',
'scikit-learn',
'rich',
'matplotlib'
],
tests_require=[],
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)