-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 718 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 718 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
config = {
'name': 'pumpy',
'version': '1.1.3',
'description': 'Python RS-232 interface for Harvard syringe pumps',
'url': 'https://github.com/tomwphillips/pumpy',
'author': 'Tom W Phillips',
'author_email': 'me@tomwphillips.co.uk',
'license': 'MIT',
'install_requires': ['pyserial>=2.7'],
'py_modules': ['pumpy']
}
setup(classifiers=[
'Programming Language :: Python',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering'],
**config)