forked from M-Labs/artiq
add basic setup.py and infrastructure
This commit is contained in:
parent
7289c18a42
commit
741228878c
|
@ -5,3 +5,4 @@ __pycache__
|
||||||
*.elf
|
*.elf
|
||||||
*.fbi
|
*.fbi
|
||||||
doc/manual/_build
|
doc/manual/_build
|
||||||
|
/build
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
#!/usr/bin/python
|
||||||
|
# -*- coding: utf8 -*-
|
||||||
|
|
||||||
|
from setuptools import setup, find_packages
|
||||||
|
from glob import glob
|
||||||
|
|
||||||
|
setup(
|
||||||
|
name = "artiq",
|
||||||
|
version = "0.0+dev",
|
||||||
|
author = u"Sébastien Bourdeauducq & NIST Ion Storage Group",
|
||||||
|
author_email = "sb@m-labs.hk",
|
||||||
|
url = "http://github.com/m-labs/artiq/",
|
||||||
|
description = "Experiment Control",
|
||||||
|
long_description = open("README.rst").read(),
|
||||||
|
license = "BSD",
|
||||||
|
install_requires = [
|
||||||
|
"numpy", "scipy", "sphinx", "numpydoc", "nose",
|
||||||
|
],
|
||||||
|
extras_require = {},
|
||||||
|
dependency_links = [],
|
||||||
|
packages = find_packages(),
|
||||||
|
namespace_packages = [],
|
||||||
|
test_suite = "nose.collector",
|
||||||
|
include_package_data = True,
|
||||||
|
ext_modules=[],
|
||||||
|
)
|
Loading…
Reference in New Issue