setup.py 323 B

12345678910111213
  1. from setuptools import setup, find_packages
  2. setup(
  3. name="AbstractSemantics",
  4. version="0.0.1",
  5. description="semantics",
  6. url="https://github.com/lucasgautheron",
  7. author="Lucas Gautheron",
  8. author_email="lucas.gautheron@gmail.com",
  9. license="MIT",
  10. packages=find_packages(),
  11. zip_safe=False,
  12. )