setup.py 549 B

123456789101112
  1. from distutils.core import setup
  2. setup(name="sccd",
  3. version="1.0.0",
  4. description="SCCD Compiler and Runtime",
  5. author="Simon Van Mierlo",
  6. author_email="Simon.VanMierlo@uantwerpen.be",
  7. url="http://msdl.cs.mcgill.ca/people/simonvm",
  8. packages=['sccd', 'sccd.runtime', 'sccd.runtime.libs', 'sccd.compiler'],
  9. package_dir={'sccd': 'python_sccd', 'sccd.runtime': 'python_sccd/python_sccd_runtime', 'sccd.runtime.libs': 'python_sccd/python_sccd_runtime/libs', 'sccd.compiler': 'python_sccd/python_sccd_compiler'}
  10. )