-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (28 loc) · 1.02 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
from setuptools import setup
setup(
name="threeflex",
version="0.1.1",
description="Python driver for Micromeritics 3Flex surface "
"characterization analyzers.",
url="http://github.com/numat/threeflex/",
author="Patrick Fuller",
author_email="[email protected]",
packages=["threeflex"],
install_requires=[],
entry_points={
"console_scripts": [("threeflex = threeflex:command_line")]
},
license="GPLv2",
classifiers=[
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Development Status :: 4 - Beta",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)"
]
)