- Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
19 lines (17 loc) · 474 Bytes
/
Copy pathsetup.py
File metadata and controls
19 lines (17 loc) · 474 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- coding: utf-8 -*-
fromsetuptoolsimportsetup
withopen("README.rst") asf:
readme=f.read()
setup(
name="maxcube-api",
version="0.4.3",
description="eQ-3/ELV MAX! Cube Python API",
long_description=readme,
author="David Uebelacker",
author_email="david@uebelacker.ch",
url="https://github.com/hackercowboy/python-maxcube-api.git",
license='MIT',
packages=["maxcube"],
test_suite="tests",
python_requires=">=3.7",
)