-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
45 lines (39 loc) · 1.29 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
"""
Installs the pulsequantum package
"""
from setuptools import setup, find_packages
from pathlib import Path
import versioneer
readme_file_path = Path(__file__).absolute().parent / "README.md"
required_packages = ['broadbean>=0.10.0',
'PyQt5',
'qcodes',
'panel',
'holoviews']
package_data = {"pulsequantum": ["conf/telemetry.ini", 'pulselib/*.json',
'initfiles/*.json', 'initfiles/*yaml']}
setup(
name="pulsequantum",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
python_requires=">=3.7",
install_requires=required_packages,
author="Rasmus Bjerregaard Christensen",
author_email="[email protected]",
description="Pulse building interface",
long_description=readme_file_path.open().read(),
long_description_content_type="text/markdown",
license="",
package_data=package_data,
packages=find_packages(exclude=["*.tests", "*.tests.*"]),
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.7",
],
entry_points={
"console_scripts": [
"pulsequantum = pulsequantum.app:run",
],
}
)