forked from numat/polyscience
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (28 loc) · 1008 Bytes
/
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='vwr',
version='0.1.13',
description='Python driver for VWR circulating baths.',
url='http://github.com/numat/vwr/',
author='Patrick Fuller',
author_email='[email protected]',
packages=['vwr'],
package_data={'vwr': ['vwr/client.js', 'vwr/main.css',
'vwr/*.template']},
include_package_data=True,
install_requires=['tornado'],
entry_points={
'console_scripts': [('vwr = vwr: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',
'Topic :: Scientific/Engineering :: Human Machine Interfaces',
'Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)'
]
)