Skip to content

Commit

Permalink
Update setup
Browse files Browse the repository at this point in the history
  • Loading branch information
umitkaanusta authored Apr 28, 2020
1 parent d73bd56 commit c2232cd
Showing 1 changed file with 19 additions and 20 deletions.
39 changes: 19 additions & 20 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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'
],
)

0 comments on commit c2232cd

Please # to comment.