Skip to content

Commit

Permalink
Fixed setup.py, now PyPi compliant.
Browse files Browse the repository at this point in the history
  • Loading branch information
nazavode committed Oct 9, 2015
1 parent 900cc30 commit 2971150
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions setup.py
Expand Up @@ -64,19 +64,32 @@ def read_requirements(*filenames):

# Final setup
setup(
name="automaton",
name="python-automaton",
version=version,
requires=[],
description="Minimal finite-state machine",
description="Minimal finite-state machines",
author="Federico Ficarelli",
author_email="toroidh@gmail.com",
install_requires=read_requirements('install'),
package_data={},
# data_files=data_files,
url="...",
download_url='...',
url="https://github.com/fmontag451/automaton",
packages=packages,
scripts=scripts,
# tests_require=['tox'],
# cmdclass = {'test': Tox},
classifiers=[
# status:
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
# audience:
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
# license:
'License :: OSI Approved :: Apache Software License',
# language:
'Programming Language :: Python :: 3.4',
'Operating System :: OS Independent',
],
keywords='configuration files',
)

0 comments on commit 2971150

Please sign in to comment.