-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (28 loc) · 945 Bytes
/
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
#!/usr/bin/env python
# coding: utf-8
"""Install parameters for python import"""
from setuptools import setup
with open('README.md', 'r') as in_file:
long_description = in_file.read()
setup(
name="Alicat",
version="0.2.0-alpha",
description="Python driver for Alicat mass flow and pressure devices",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/JosephHickey1/Alicat-Python",
author="Joseph Hickey",
packages=["Alicat"],
install_requires=["pyserial","pickle","minimalmodbus"],
entry_points={
"console_scripts": [("Alicat = Alicat:run")]
},
license="MIT License",
classifiers=[
"License :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Human Machine Interfaces"
]
)