-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
51 lines (48 loc) · 2.18 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
###############################################################################
# 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 3 of the License, or #
# any later version. #
# #
# This program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even 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, see <http://www.gnu.org/licenses/>. #
# #
# Copyright (C) 2010, Lorenzo Gil Sanchez, <[email protected]> #
###############################################################################
from setuptools import setup, find_packages
setup(
name="Cobaya",
version="0.7.1",
author="Pablo Recio Quijano",
author_email="[email protected]",
description="Command line programm to send Hamster task to a remote system",
classifiers=[
'Development Status :: 1 - Planning',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Utilities',
],
license="GPL 3",
keywords="hamster workreport",
url='http://github.com/pyriku/Cobaya',
install_requires=[
'httplib2',
],
packages=find_packages('src'),
package_dir = {'': 'src'},
zip_safe=True,
entry_points={
'console_scripts': [
'cobaya = cobaya.app:main',
]
},
test_suite="tests",
)