You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
709 B

  1. --- a/setup.py
  2. +++ b/setup.py
  3. @@ -2,6 +2,7 @@
  4. Setup file for automat
  5. """
  6. +import os
  7. from setuptools import setup, find_packages
  8. try:
  9. @@ -14,7 +15,7 @@ except(IOError, ImportError):
  10. setup(
  11. name='Automat',
  12. - use_scm_version=True,
  13. + version=os.getenv('PKG_VERSION'),
  14. url='https://github.com/glyph/Automat',
  15. description="""
  16. Self-service finite-state machines for the programmer on the go.
  17. @@ -22,10 +23,6 @@ setup(
  18. long_description=long_description,
  19. packages=find_packages(exclude=[]),
  20. package_dir={'automat': 'automat'},
  21. - setup_requires=[
  22. - 'setuptools-scm',
  23. - 'm2r',
  24. - ],
  25. install_requires=[
  26. "attrs>=16.1.0",
  27. "six",