add basic setup.py and infrastructure

pull/231/head
Robert Jördens 2014-05-27 12:40:42 -06:00 committed by Sebastien Bourdeauducq
parent 7289c18a42
commit 741228878c
4 changed files with 27 additions and 0 deletions

1
.gitignore vendored
View File

@ -5,3 +5,4 @@ __pycache__
*.elf
*.fbi
doc/manual/_build
/build

0
README.rst Normal file
View File

0
artiq/__init__.py Normal file
View File

26
setup.py Executable file
View File

@ -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=[],
)