forked from OxfordIonTrapGroup/entangler-core
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (25 loc) · 781 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
"""Install the ``entangler`` package for use in ARTIQ.
You can install this package locally (in development mode) using:
``$ pip install -e .``.
"""
import setuptools
if __name__ == "__main__":
setuptools.setup(
name="entangler",
version="1.2.0.post0",
packages=setuptools.find_packages(),
requirements=["artiq>=5", "dynaconf>=3", "mergedeep", "numpy"],
url="https://github.com/drewrisinger/entangler-core",
setup_requires=["pytest-runner"],
tests_require=["pytest"],
package_data={
"": ["*.txt", "*.toml", "*.md", "*.json"],
},
extras_require={
"gateware": [
"jsonschema",
"migen",
"misoc",
]
},
)