forked from nist-ionstorage/pdq2
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·46 lines (41 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
46
#!/usr/bin/env python3
from setuptools import setup, find_packages
import sys
if not (3, 5, 3) <= sys.version_info[:3] < (3, 6, 0):
raise Exception("You need Python 3.5.3+ (but not 3.6+)")
setup(
name="pdq",
version="3.0.dev",
author="NIST/M-Labs",
author_email="artiq@lists.m-labs.hk",
url="https://github.com/m-labs/pdq",
description="Pretty darn quick arbitrary waveform generator",
long_description=open("README.rst", encoding="utf-8").read(),
license="GPLv3+",
classifiers="""\
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Operating System :: Microsoft :: Windows
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3.5
Topic :: Scientific/Engineering :: Physics
Topic :: System :: Hardware
""".splitlines(),
install_requires=[
"migen", "misoc", "numpy", "scipy",
],
extras_require={
"artiq": ["artiq>=3.0.dev"],
},
packages=find_packages(),
include_package_data=True,
entry_points={
"console_scripts": [
"pdq = pdq.host.cli:main",
"pdq_make = pdq.gateware.make:main",
"aqctl_pdq = pdq.artiq.aqctl_pdq:main",
],
}
)