-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·58 lines (57 loc) · 1.51 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name="customxepr",
version="v3.1.3",
description="Python interface for for Bruker Xepr.",
url="https://github.com/OE-FET/customxepr",
author="Sam Schott",
author_email="ss2151@cam.ac.uk",
license="MIT",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
packages=find_packages(),
package_data={
"customxepr": [
"gui/resources/*.icns",
"gui/resources/*.png",
"gui/resources/*.md",
"gui/resources/*.ui",
"gui/*.ui",
"experiment/*.txt",
],
},
install_requires=[
"decorator",
"desktop-notifier",
"ipython",
"keithley2600>=2.0.0",
"keithleygui>=1.2.0",
"pint",
"pyvisa",
"pyvisa-py",
"lmfit",
"markdown2",
"numpy",
"pygments",
"PySignal",
"PyQt5",
"qtconsole",
'configparser;python_version<="2.7"',
"scipy",
"mercuryitc>=0.2.1",
"mercurygui>=2.0.0",
"XeprAPI"
],
zip_safe=False,
entry_points={
"console_scripts": ["customxepr=customxepr.startup:run_gui"],
},
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)