forked from OxfordIonTrapGroup/wand
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 705 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 705 Bytes
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
#!/usr/bin/env python3
from setuptools import setup, find_packages
console_scripts = [
"wand_server = wand.frontend.wand_server:main",
"wand_gui = wand.frontend.wand_gui:main",
"wand_influx_db = wand.frontend.wand_influx_db:main",
]
requirements = [
# Explicitly depend on setuptools to bring back the deprecated pkg_resources
# before it is removed entirely (at which point we need a new solution).
"setuptools",
]
setup(
name="wand",
version="0.1",
description="Wavelength Analysis 'Nd Display",
packages=find_packages(),
include_package_data=True,
install_requires=requirements,
entry_points={
"console_scripts": console_scripts,
}
)