-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
27 lines (25 loc) · 952 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
"""Setup module for pymensor."""
from setuptools import setup
with open('README.md', 'r') as in_file:
LONG_DESCRIPTION = in_file.read()
setup(
name="pymensor",
version="0.0.2",
description="Python driver for Mensor Modular Pressure Controllers.",
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
url="https://github.com/stevenlowery011/pymensor.git",
author="Steven Lowery",
author_email="[email protected]",
packages=["pymensor"],
install_requires=["pyvisa"],
license="GPLv3",
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)"
]
)