Skip to content

Commit

Permalink
Merge pull request #27 from RonnyPfannschmidt/setuppy
Browse files Browse the repository at this point in the history
extend setup.py metadata and introduce setuptools_scm
  • Loading branch information
glyph committed Sep 6, 2016
2 parents 2d535af + a84baf5 commit 3ffbac9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@
.coverage*
*.egg-info/
*.py[co]
build/
dist/
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,15 @@

setup(
name='Automat',
version='0.3.0',
use_scm_version=True,
description="""
Self-service finite-state machines for the programmer on the go.
""",
""".strip(),
packages=find_packages(exclude=[]),
package_dir={'automat': 'automat'},
setup_requires=[
'setuptools-scm',
],
install_requires=[
"characteristic",
"six",
Expand All @@ -25,6 +28,8 @@
"automat-visualize = automat._visualize:tool"
],
},
author_name='Glyph',
author_mail='glyph@twistedmatrix.com',
include_package_data=True,
license="MIT",
)

0 comments on commit 3ffbac9

Please sign in to comment.