forked from D3TaLES/hardpotato
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 641 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 641 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
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
setup(
name='hardpotato',
version='1.3.11',
description='Python API to control programmable potentiostats.',
long_description=readme(),
long_description_content_type="text/markdown",
author='Oliver Rodriguez',
author_email='oliver.rdz@softpotato.xyz',
packages=find_packages('src'),
package_dir={'':'src'},
url='https://github.com/jrlLAB/hardpotato',
keywords='Electrochemistry',
install_requires=[
'numpy',
'scipy',
'matplotlib',
'softpotato',
'pyserial'
],
)