-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
30 lines (26 loc) · 995 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
26
27
28
29
30
#!/usr/bin/env python
from setuptools import setup, find_packages
import version_check.config
setup(name='version-check',
version=version_check.config.VERSION,
description='Version Checking tool for SaltStack PRs',
author='Nicole Thomas',
author_email='[email protected]',
url='https://github.com/rallytime/version-check.git',
packages=find_packages(),
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
],
install_requires=['tornado'],
entry_points='''
[console_scripts]
version-check= version_check.cli:main
''')