Updated packaing for version 0.1.

This commit is contained in:
Mark Wolfman
2018-04-13 11:27:33 -05:00
parent e6bec1ce55
commit 9ff160eb59
+16 -1
View File
@@ -1,5 +1,6 @@
#!/usr/bin/env python
import os
# from distutils.core import setup
from setuptools import setup
@@ -7,10 +8,14 @@ def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='dungeonsheets',
version='0.1dev2',
version='0.1.0',
description='Dungeons and Dragons 5e Character Tools',
long_description=read('README.rst'),
long_description_content_type='text/x-rst',
keywords='D&D character sheets',
author='Mark Wolfman',
author_email='canismarko@gmail.com',
license='GPLv3',
url='https://github.com/canismarko/dungeon-sheets',
download_url = 'https://github.com/canismarko/dungeon-sheets/archive/master.zip',
packages=['dungeonsheets'],
@@ -25,4 +30,14 @@ setup(name='dungeonsheets',
'makesheets = dungeonsheets.make_sheets:main'
]
},
python_requires='>=3.6',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Games/Entertainment :: Role-Playing',
],
)