Skip to content

Commit beff27b

Browse files
committed
fix PyPI release
1 parent 54ce0a3 commit beff27b

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

setup.py

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,28 +18,29 @@
1818
test_requirements = ["graphviz", "pydot", "pyparsing"]
1919

2020
setup(
21+
name='pythomata',
22+
version='0.1.2',
23+
description="Python implementation of automata.",
24+
long_description=readme + '\n\n' + history,
2125
author="Marco Favorito",
2226
author_email='marco.favorito@gmail.com',
27+
url='https://github.com/MarcoFavorito/pythomata',
28+
packages=find_packages(include=['pythomata*']),
29+
include_package_data=True,
30+
install_requires=requirements,
31+
license="MIT license",
32+
zip_safe=False,
33+
keywords='pythomata',
2334
classifiers=[
2435
'Development Status :: 2 - Pre-Alpha',
2536
'Intended Audience :: Developers',
2637
'License :: OSI Approved :: MIT License',
2738
'Natural Language :: English',
39+
'Programming Language :: Python :: 3',
2840
'Programming Language :: Python :: 3.5',
2941
'Programming Language :: Python :: 3.6',
3042
],
31-
description="Python implementation of automata.",
32-
install_requires=requirements,
33-
license="MIT license",
34-
long_description=readme + '\n\n' + history,
35-
include_package_data=True,
36-
keywords='pythomata',
37-
name='pythomata',
38-
packages=find_packages(include=['pythomata']),
39-
setup_requires=setup_requirements,
4043
test_suite='tests',
44+
setup_requires=setup_requirements,
4145
tests_require=test_requirements,
42-
url='https://github.com/MarcoFavorito/pythomata',
43-
version='0.1.2',
44-
zip_safe=False,
4546
)

0 commit comments

Comments
 (0)