-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
65 lines (58 loc) · 2.1 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
# Copyright (c) 2018, UofL Computer Systems Lab.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without event the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
from setuptools import setup
import iobs
setup(
name=iobs.__title__,
version=iobs.__version__,
description=iobs.__summary__,
long_description=open('README.md').read(),
url=iobs.__url__,
project_urls={
'UofL CSL': 'http://cecs.louisville.edu/csl/',
'IOBS source': 'https://github.com/uofl-csl/iobs'
},
author=iobs.__author__,
author_email=iobs.__email__,
license='GNU GPLv2',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
],
packages=['iobs', 'iobs.commands'],
include_package_data=True,
entry_points={
'iobs.registered_commands': [
'execute = iobs.commands.execute:main',
'validate = iobs.commands.validate:main'
],
'console_scripts': [
'iobs = iobs.__main__:main'
]
},
python_requires='>=3.4',
install_requires=[
'colorama'
]
)