blob: f22df7c6af0ceb17542f12d42636795ecf6b4624 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import setuptools
setuptools.setup(
name="mtg",
version="1.0",
author="mounderfod",
description="Looks up Magic: The Gathering cards and returns info about them.",
packages=setuptools.find_packages(),
entry_points={
'console_scripts': [
'mtg = mtg.mtg:main'
]
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
)
|