-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
39 lines (36 loc) · 1.22 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env python
import setuptools
with open("README.rst", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='donjon-painter',
version='0.9.5',
author='Korvin Roganov',
author_email='[email protected]',
license='GPLv3',
description='Graphical map translator for donjon\'s Random Dungeon Generator TSV files.',
long_description=long_description,
url='https://github.com/donjon-painter/donjon-painter',
packages=setuptools.find_packages(),
include_package_data=True,
package_dir={'donjon-painter': 'donjon_painter'},
entry_points={
'console_scripts': [
'donjon-painter = donjon_painter.painter:main'
]
},
python_requires='>=3.5',
install_requires=[
'Pillow'
],
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Topic :: Utilities",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent"
])