-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 1.18 KB
/
Copy pathsetup.py
File metadata and controls
29 lines (28 loc) · 1.18 KB
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
setup(
name='minecraftTellrawGenerator',
version='1.0.5',
description='Easily create minecraft tellraw command',
long_description="View full README on `Github <https://github.com/MyTheValentinus/minecraftTellrawGenerator>`_",
long_description_content_type='text/x-rst',
url='https://github.com/MyTheValentinus/minecraftTellrawGenerator',
author='Valentin DEVILLE',
author_email='contact@valentin-deville.eu',
keywords='minecraft tellraw command',
python_requires='>=3',
packages=['minecraftTellrawGenerator'],
project_urls={
'Bug Reports': 'https://github.com/MyTheValentinus/minecraftTellrawGenerator/issues',
'Donation': 'https://www.paypal.me/ValentinDeville',
'Source': 'https://github.com/MyTheValentinus/minecraftTellrawGenerator',
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Topic :: Software Development :: Build Tools',
'Natural Language :: French',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Utilities'
],
)