-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (25 loc) · 894 Bytes
/
setup.py
File metadata and controls
30 lines (25 loc) · 894 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
import os
from setuptools import setup
def read(file_name):
return open(os.path.join(os.path.dirname(__file__), file_name)).read()
VERSION = "0.0.1"
setup(
name="mcc",
version=VERSION,
author="Charles Risicato",
description=("A library for interacting with the MCC USB-TEMP DAQ"),
license="GPL3",
keywords="hardware daq usb hidapi",
url="https://github.com/TESScience/MCUSBDAQ",
packages=['mcc'],
download_url='https://github.com/TESScience/MCUSBDAQ/tarball/{VERSION}'.format(VERSION=VERSION),
long_description=read('README.md'),
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 2.7",
"Topic :: System :: Hardware :: Hardware Drivers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
scripts=['temperature_monitor'],
requires=['hidapi']
)