-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·39 lines (37 loc) · 1.29 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
"""
Setup configuration
"""
from setuptools import setup
from mian import mian as package
setup(
name=package.__package__,
version=package.__version__,
description='Graph blocks to height in a Minecraft save game',
long_description=package.__doc__,
url=package.__url__,
keywords='Minecraft graph graphs block blocks',
packages=[package.__package__],
install_requires=['matplotlib', 'nbt', 'numpy'],
entry_points={
'console_scripts': [
'%(package)s=%(package)s.%(package)s:main' % {
'package': package.__package__}]},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Topic :: Artistic Software',
'Topic :: Multimedia :: Graphics'],
test_suite='test.test_package',
author=package.__author__,
author_email=package.__email__,
maintainer=package.__maintainer__,
maintainer_email=package.__email__,
download_url='http://pypi.python.org/pypi/mian/',
platforms=['POSIX', 'Windows'],
license=package.__license__,
)