|
6 | 6 |
|
7 | 7 |
|
8 | 8 | setup(
|
9 |
| - name = "artiq", |
10 |
| - version = "0.0+dev", |
11 |
| - author = "M-Labs / NIST Ion Storage Group", |
12 |
| - author_email = "sb@m-labs.hk", |
13 |
| - url = "http://m-labs.hk/artiq", |
14 |
| - description = "A control system for trapped-ion experiments", |
15 |
| - long_description = open("README.rst").read(), |
16 |
| - license = "BSD", |
17 |
| - install_requires = [ |
| 9 | + name="artiq", |
| 10 | + version="0.0+dev", |
| 11 | + author="M-Labs / NIST Ion Storage Group", |
| 12 | + author_email="sb@m-labs.hk", |
| 13 | + url="http://m-labs.hk/artiq", |
| 14 | + description="A control system for trapped-ion experiments", |
| 15 | + long_description=open("README.rst").read(), |
| 16 | + license="BSD", |
| 17 | + install_requires=[ |
18 | 18 | "sphinx", "pyserial", "numpy", "scipy", "prettytable"
|
19 | 19 | ],
|
20 |
| - extras_require = {}, |
21 |
| - dependency_links = [], |
22 |
| - packages = find_packages(), |
23 |
| - namespace_packages = [], |
24 |
| - test_suite = "artiq.test", |
25 |
| - include_package_data = True, |
| 20 | + extras_require={}, |
| 21 | + dependency_links=[], |
| 22 | + packages=find_packages(), |
| 23 | + namespace_packages=[], |
| 24 | + test_suite="artiq.test", |
| 25 | + data_files=[ |
| 26 | + (os.path.join("artiq", "gui"), |
| 27 | + [os.path.join("artiq", "gui", "icon.png")])], |
26 | 28 | ext_modules=[],
|
27 | 29 | scripts=glob(os.path.join("frontend", "*.py"))
|
28 | 30 | )
|
0 commit comments