-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathsetup.py
41 lines (37 loc) · 1.22 KB
/
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
36
37
38
39
40
41
'''
py-opc is a python library to operate the Alphasense
OPC-N2 optical particle counter.
Written originally by David H Hagan
'''
VERSION = '1.6.0'
try:
from setuptools import setup
except:
from distutils.core import setup
setup(
name = 'py-opc',
version = VERSION,
packages = ['opc'],
description = 'Python libary for operating the Alphasense OPC-N2 optical particle counter',
author = 'David H Hagan',
author_email = 'david@davidhhagan.com',
license = 'MIT',
url = 'https://github.com/dhhagan/py-opc',
keywords = ['opc', 'alphasense', 'atmospheric chemistry'],
test_suite = 'tests',
classifiers = [
'Development Status :: 3 - Alpha',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Atmospheric Science',
'Topic :: Software Development',
'Topic :: System :: Hardware',
]
)