forked from benpruitt/tecancavro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (37 loc) · 1.09 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
42
43
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup, Extension
except ImportError:
from distutils.core import setup, Extension
DESCRIPTION = 'Python library for Tecan Cavro OEM syringe pump control'
DISTNAME = 'tecancavro'
LICENSE = 'MIT'
AUTHORS = 'Ben Pruitt, Nick Conway'
EMAIL = '[email protected]'
URL = 'https://github.com/benpruitt/tecancavro'
DOWNLOAD_URL = ''
CLASSIFIERS = [
'Development Status :: 1 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Scientific/Engineering',
]
setup(
name=DISTNAME,
maintainer=AUTHORS,
packages=['tecancavro'],
maintainer_email=EMAIL,
description=DESCRIPTION,
license=LICENSE,
url=URL,
download_url=DOWNLOAD_URL,
long_description=DESCRIPTION,
classifiers=CLASSIFIERS
)