|
18 | 18 | test_requirements = ["graphviz", "pydot", "pyparsing"]
|
19 | 19 |
|
20 | 20 | setup(
|
| 21 | + name='pythomata', |
| 22 | + version='0.1.2', |
| 23 | + description="Python implementation of automata.", |
| 24 | + long_description=readme + '\n\n' + history, |
21 | 25 | author="Marco Favorito",
|
22 | 26 | 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', |
23 | 34 | classifiers=[
|
24 | 35 | 'Development Status :: 2 - Pre-Alpha',
|
25 | 36 | 'Intended Audience :: Developers',
|
26 | 37 | 'License :: OSI Approved :: MIT License',
|
27 | 38 | 'Natural Language :: English',
|
| 39 | + 'Programming Language :: Python :: 3', |
28 | 40 | 'Programming Language :: Python :: 3.5',
|
29 | 41 | 'Programming Language :: Python :: 3.6',
|
30 | 42 | ],
|
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, |
40 | 43 | test_suite='tests',
|
| 44 | + setup_requires=setup_requirements, |
41 | 45 | tests_require=test_requirements,
|
42 |
| - url='https://github.com/MarcoFavorito/pythomata', |
43 |
| - version='0.1.2', |
44 |
| - zip_safe=False, |
45 | 46 | )
|
0 commit comments