-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (38 loc) · 1.01 KB
/
setup.py
File metadata and controls
43 lines (38 loc) · 1.01 KB
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
from setuptools import setup, find_packages
import easyci
tests_require = [
'flake8>=2.4.0',
'pytest>=2.5.0',
'mock>=1.0.0',
'coverage>=3.7.1',
]
install_requires = [
'Click>=5.0',
'enum34>=1.0.4',
'filelock>=2.0.4',
'PyYAML>=3.11',
'subprocess32>=3.2.6',
'watchdog>=0.8.2',
]
setup(
name='easyci',
version=easyci.__version__,
author='Naphat Sanguansin',
author_email='naphat.krit@gmail.com',
description='Local CI, for mortals.',
packages=find_packages(),
package_data={
'easyci.hooks': ['*'],
},
install_requires=install_requires,
extras_require={'tests': tests_require},
url='https://github.com/naphatkrit/easyci',
download_url='https://github.com/naphatkrit/easyci/tarball/' + easyci.__version__,
tests_require=tests_require,
keywords=['continuous', 'integration', 'easy', 'ci',
'gating', 'tests', 'testing', 'test', 'git'],
entry_points='''
[console_scripts]
eci=easyci.cli:cli
''',
)