Skip to content

Commit 32b7920

Browse files
committedDec 30, 2014
setup.py: fix data file installation
1 parent 1ada80c commit 32b7920

File tree

1 file changed

+17
-15
lines changed

1 file changed

+17
-15
lines changed
 

‎setup.py

+17-15
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,25 @@
66

77

88
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=[
1818
"sphinx", "pyserial", "numpy", "scipy", "prettytable"
1919
],
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")])],
2628
ext_modules=[],
2729
scripts=glob(os.path.join("frontend", "*.py"))
2830
)

0 commit comments

Comments
 (0)