-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 861 Bytes
/
setup.py
File metadata and controls
29 lines (25 loc) · 861 Bytes
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
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
setup(name='lootgenerator',
version='0.2.0',
description='Tabletop RPG loot generator',
long_description=readme(),
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Topic :: Games/Entertainment',
'Topic :: Games/Entertainment :: Board Games',
'Topic :: Games/Entertainment :: Role-Playing',
'Topic :: Utilities'
],
keywords='rpg loot',
url='http://github.com/tengro/lootgenerator',
author='Andrew Liashchuk',
author_email='tengro@gmail.com',
license='MIT',
packages=find_packages(),
include_package_data=True,
zip_safe=False)