-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (28 loc) · 1 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
from setuptools import setup, find_packages
import sys
import pytek.version
setup(
name='pytek',
version=pytek.version.setuptools_string(),
description='Python API for Tektronix Oscillscopes Serial interface.',
author='Brian Mearns',
author_email='[email protected]',
url='https://bitbucket.org/bmearns/pytek/',
license='LICENSE.txt',
packages=find_packages(), #Looks for __init__.py
include_package_data = True, #Uses MANIFEST.in
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
extras_require = {
'serial': ["pyserial"],
'dev': ["nose==1.3.7",
"unittest2==1.1.0",
"coverage==4.2",
"mock==2.0.0"],
'docs': ["sphinx_rtd_theme"],
}
)