-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (52 loc) · 1.75 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from setuptools import setup, find_packages
setup(
name='mtgdeck',
packages=find_packages('src'),
package_dir={'': 'src'},
version='0.2.1',
description='MTG deck list decoder and encoder library and application',
long_description=open('README.rst').read(),
author='Pedro Silva',
author_email='[email protected]',
license='GPLv3',
url='https://github.com/pedros/mtgdeck',
download_url='https://github.com/pedros/mtgdeck/archive/0.2.1.tar.gz',
keywords=[
'magic-the-gathering',
'parser',
'encoder-decoder',
'command-line-app',
'library python3'
],
zip_safe=True,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Games/Entertainment',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Filters',
'Topic :: Utilities'
],
install_requires=['pyparsing',
'defusedxml'],
tests_require=['codecov',
'coverage',
'pytest-cov',
'pytest-pep8',
'pytest'],
test_suite='tests',
entry_points={
'console_scripts': [
'mtgdeck=mtgdeck.__main__:main',
],
},
)