-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
39 lines (36 loc) · 1.25 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
from setuptools import setup
__project__ = 'minecraftstuff'
__desc__ = 'An extension library of useful stuff for Minecraft'
__version__ = '1.0.1'
__author__ = "Martin O'Hanlon"
__author_email__ = '[email protected]'
__license__ = 'MIT'
__url__ = 'https://github.com/martinohanlon/minecraft-stuff'
#__requires__ = ['py3minepi',]
__classifiers__ = [
# "Development Status :: 3 - Alpha",
# "Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Intended Audience :: Developers",
"Topic :: Education",
"Topic :: Games/Entertainment",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
]
setup(name='minecraftstuff',
version = __version__,
description = __desc__,
url = __url__,
author = __author__,
author_email = __author_email__,
license= __license__,
packages = [__project__],
# install_requires = __requires__,
zip_safe=False)