-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (31 loc) · 898 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
32
33
34
35
import setuptools
from distutils.core import setup
with open("README.md", "r") as f:
long_description = f.read()
with open("pps/version.py", "r") as f:
# Define __version__
exec(f.read())
setup(
name="pps",
packages=setuptools.find_packages(),
version=__version__,
license="MIT",
description="Python Package for Controlling Circuit Specialists DC Power Supply PPS2320A",
long_description=long_description,
long_description_content_type="text/markdown",
author="Timothy Keller",
url="",
download_url="",
project_urls={
},
keywords=["PPS2320A", "Power Supply", "Circuit Specialists"],
python_requires=">=3.6",
install_requires=[
"pyserial",
],
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
)