forked from numat/alicat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 979 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 979 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
"""Install parameters for CLI and python import."""
from setuptools import setup
with open('README.md', 'r') as in_file:
long_description = in_file.read()
setup(
name="alicat",
version="0.4.0",
description="Python driver for Alicat mass flow controllers.",
long_description=long_description,
long_description_content_type='text/markdown',
url="http://github.com/numat/alicat/",
author="Patrick Fuller",
author_email="pat@numat-tech.com",
packages=["alicat"],
install_requires=["pyserial"],
entry_points={
"console_scripts": [("alicat = alicat:run")]
},
license="GPLv2",
classifiers=[
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Development Status :: 4 - Beta",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
]
)