diff --git a/setup.py b/setup.py index ade38a8..f236707 100644 --- a/setup.py +++ b/setup.py @@ -1,26 +1,25 @@ from distutils.core import setup setup( - name="Jomini", - packages=["jomini"], - version="0.1.1", - license="MIT", - description="Historical battle simulation package for Python", - author="Ümit Kaan Usta", - author_email="u.kaanusta@gmail.com", - url="https://github.com/umitkaanusta/Jomini", - download_url="https://github.com/umitkaanusta/Jomini/archive/v0.1.1.tar.gz", - keywords=["military", "battle", "combat", "history", "simulation", "war", "historical", "attrition", "model"], - install_requires=[], + name='Jomini', + packages=['jomini'], + version='0.1.2', + license='MIT', + description='Historical battle simulation package for Python', + author='Ümit Kaan Usta', + author_email='u.kaanusta@gmail.com', + url='https://github.com/umitkaanusta/Jomini', + download_url='https://github.com/umitkaanusta/Jomini/archive/v0.1.2.tar.gz', + keywords=['military', 'battle', 'combat', 'history', 'simulation', 'war', 'historical', 'attrition', 'model'], classifiers=[ - "Development Status :: 3 - Alpha", - "Intended Audience :: Developers", - "Intended Audience :: Education", - "Topic :: Software Development :: Build Tools", - "License :: OSI Approved :: MIT License", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8" + 'Development Status :: 3 - Alpha', + 'Intended Audience :: Developers', + 'Intended Audience :: Education', + 'Topic :: Software Development :: Build Tools', + 'License :: OSI Approved :: MIT License', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8' ], )