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.
|
|
|
|
Index: Automat-0.8.0/setup.py
|
|
|
|
|
--- Automat-0.8.0/setup.py.orig 2017-02-09 00:11:48.000000000 +0100
|
|
|
|
|
+++ Automat-0.8.0/setup.py 2017-02-18 13:57:53.575493000 +0100
|
|
|
|
|
@@ -4,14 +4,6 @@
|
|
|
|
|
|
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
|
|
-try:
|
|
|
|
|
- from m2r import parse_from_file
|
|
|
|
|
- long_description = parse_from_file('README.md')
|
|
|
|
|
-except(IOError, ImportError):
|
|
|
|
|
- print("\n\n!!! m2r not found, long_description is bad, don't upload this to PyPI !!!\n\n")
|
|
|
|
|
- import io
|
|
|
|
|
- long_description = io.open('README.md', encoding="utf-8").read()
|
|
|
|
|
-
|
|
|
|
|
setup(
|
|
|
|
|
name='Automat',
|
|
|
|
|
use_scm_version=True,
|
|
|
|
|
@@ -19,12 +11,11 @@
|
|
|
|
|
description="""
|
|
|
|
|
Self-service finite-state machines for the programmer on the go.
|
|
|
|
|
""".strip(),
|
|
|
|
|
- long_description=long_description,
|
|
|
|
|
+ long_description="",
|
|
|
|
|
packages=find_packages(exclude=[]),
|
|
|
|
|
package_dir={'automat': 'automat'},
|
|
|
|
|
setup_requires=[
|
|
|
|
|
'setuptools-scm',
|
|
|
|
|
- 'm2r',
|
|
|
|
|
],
|
|
|
|
|
install_requires=[
|
|
|
|
|
"attrs",
|