-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 713 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
from os.path import abspath, dirname, join
from setuptools import setup, find_packages
source_directory = dirname(abspath(__file__))
requirements = [l.strip() for l in open(join(source_directory, 'requirements.txt'))]
setup(
name='checkio_cli',
version='0.0.21',
description='CheckiO common line interface for run and debug mission',
author='CheckiO',
author_email='igor@checkio.org',
url='https://github.com/CheckiO/checkio-cli',
download_url='https://github.com/CheckiO/checkio-cli/tarball/0.0.21',
packages=find_packages(),
entry_points={
'console_scripts': ['checkio-cli = checkio_cli.cli:main'],
},
install_requires=requirements,
)