-
Notifications
You must be signed in to change notification settings - Fork 54
/
setup.py
executable file
·63 lines (57 loc) · 1.44 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import os
import sys
from setuptools import setup, find_packages
def readme():
with open('README.rst') as f:
return f.read()
exec(open(os.path.join('saleae', 'version.py')).read())
requires = [
'future',
'enum34;python_version<"3.4"',
'psutil',
]
setup(
name='saleae',
version=__version__,
#
packages=find_packages(exclude=['tests']),
#
description="Library to control a Saleae",
long_description=readme(),
#
url="https://github.com/ppannuto/python-saleae",
#
author="Pat Pannuto",
author_email="[email protected]",
#
license="MIT",
#
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Embedded Systems",
"Topic :: Utilities",
],
#
keywords='string formatting',
#
install_requires=requires,
include_package_data=True,
#
#test_suite='saleae.tests',
#
#entry_points = {
# 'console_scripts':['saleae = saleae:console']
#},
)