-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
41 lines (37 loc) · 1.14 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
from setuptools import setup
try:
import pypandoc
long_description = pypandoc.convert("README.md", "rst")
except (IOError, ImportError):
long_description = open("README.md").read()
tests_require = [
"pytest",
]
setup(
name="gameprices",
packages=[
"gameprices",
"gameprices.shops",
"gameprices.cli",
"gameprices.test",
"gameprices.utils",
],
version="1.4.0",
description="An interface for the undocumented Sony PlayStation Store PSN and Nintendo Eshop Apis",
author="Matthias Kuech",
author_email="post@matthias-kuech.de",
url="https://github.com/snipem/gameprices",
download_url="https://github.com/snipem/gameprices/archive/1.0.tar.gz",
keywords=["playstation", "eshop", "store", "prices"],
license="GPL2",
test_suite="gameprices.test",
tests_require=tests_require,
entry_points={
"console_scripts": [
"eshopcli=gameprices.cli.cli:eshop_main",
"psncli=gameprices.cli.cli:psn_main",
"psnmailalert=gameprices.cli.mailalert:main",
"dealsmailalert=gameprices.cli.mailalert:main",
]
},
)