forked from achim1/goldschmidt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (39 loc) · 1.69 KB
/
setup.py
File metadata and controls
41 lines (39 loc) · 1.69 KB
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
from setuptools import setup
from goldschmidt import __version__
setup(name='goldschmidt',
version=__version__,
description='Readout a GU-3001D Milli-Gauss meter via USB/serial port' +
' on a unix system',
long_description='Provides commandline readout and gui for the named ' +
'instrument. For the name see https://en.wikipedia.' +
'org/wiki/Carl_Wolfgang_Benjamin_Goldschmidt who was ' +
'an astronomer, mathematician and physicist and ' +
'assistant to Gauss',
author='Achim Stoessl',
author_email="achim.stoessl@gmail.com",
url='https://github.com/achim1/goldschmidt',
install_requires=['numpy>=1.11.0',
'matplotlib>=1.5.0',
'pyzmq>=16.0.2',
'pyserial',
'click',
'pandas'],
license="GPL",
platforms=["Ubuntu 14.04", "Ubuntu 16.04"],
classifiers=[
"License :: OSI Approved :: GNU General Public License v3" +
"or later (GPLv3+)",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.5",
"Topic :: Scientific/Engineering :: Physics"
],
keywords=["magnetometer", "gauss",
"GU-3001D", "gaussmeter", "Milli-Gauss Meter",
"readout", "physics", "engineering",
"serial", "RS-232", "USB"],
packages=['goldschmidt'],
scripts=["bin/goldschmidt"],
package_data={'goldschmidt': ['goldschmidt.mplstyle']}
)