-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·82 lines (70 loc) · 2.35 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
from setuptools import setup
from setuptools.command.test import test as TestCommand
with open('steamwatch/__version__.py') as versionfile:
VERSION = versionfile.read().split('\'')[1]
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
readme = open('README.rst').read()
with open('requirements.txt') as f:
requires = [line for line in f.readlines()]
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = ['--cov', 'steamwatch']
self.test_suite = True
def run_tests(self):
import pytest
errcode = pytest.main(self.test_args)
sys.exit(errcode)
setup(
name='steamwatch',
version=VERSION,
description='Watch prices on Steam store',
long_description=readme,
author='Alexander Keil',
author_email='[email protected]',
url='https://github.com/akeil/steamwatch',
packages=[
'steamwatch',
],
package_dir={'steamwatch': 'steamwatch'},
include_package_data=True,
install_requires=requires,
cmdclass={'test': PyTest,},
tests_require=['pytest-cov'],
extras_require={
'testing': ['pytest-cov'],
},
license="BSD",
zip_safe=True,
keywords='steam steamstore',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
],
test_suite='tests',
entry_points={
'console_scripts': [
'steamwatch = steamwatch.main:main',
],
'steamwatch.signals': [
'app_added = steamwatch.application:log_signal',
'app_removed = steamwatch.application:log_signal',
'package_linked = steamwatch.application:log_signal',
'threshold = steamwatch.application:log_signal',
'currency_changed = steamwatch.application:log_signal',
'price_changed = steamwatch.application:log_signal',
'release_date_changed = steamwatch.application:log_signal',
'coming_soon_changed = steamwatch.application:log_signal',
'supports_linux_changed = steamwatch.application:log_signal',
]
}
)