forked from ericjaychi/tigrex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (22 loc) · 770 Bytes
/
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
requirements = ["requests<=2.21.0", "fire<=0.1.3"]
setuptools.setup(
name="tigrex",
version="1.2.0",
author="Eric Chi",
author_email="[email protected]",
description="A Magic the Gathering CLI Tool",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
install_requires=requirements,
url="https://github.com/ericjaychi/tigrex",
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points={'console_scripts': ['tigrex = tigrex.__main__:main']}
)