forked from cocaine/cocaine-framework-python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
62 lines (60 loc) · 2.52 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
#!/usr/bin/env python
#
# Copyright (c) 2011-2012 Andrey Sibiryov <me@kobology.ru>
# Copyright (c) 2012+ Anton Tyurin <noxiouz@yandex.ru>
# Copyright (c) 2013+ Evgeny Safronov <division494@gmail.com>
# Copyright (c) 2011+ Other contributors as noted in the AUTHORS file.
#
# This file is part of Cocaine.
#
# Cocaine is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# Cocaine 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 Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
from setuptools import find_packages, setup
setup(
name="cocaine",
version="0.12.14.10",
author="Anton Tyurin",
author_email="noxiouz@yandex.ru",
maintainer='Evgeny Safronov',
maintainer_email='division494@gmail.com',
url="https://github.com/cocaine/cocaine-framework-python",
description="Cocaine Python Framework for Cocaine Application Cloud.",
long_description="A simple framework to ease the development of Cocaine apps",
license="LGPLv3+",
platforms=["Linux", "BSD", "MacOS"],
namespace_packages=['cocaine'],
include_package_data=True,
zip_safe=False,
packages=find_packages(),
install_requires=open('./requirements.txt').read(),
tests_require=open('./tests/requirements.txt').read(),
test_suite='nose.collector',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: CPython",
# 'Development Status :: 1 - Planning',
# 'Development Status :: 2 - Pre-Alpha',
# 'Development Status :: 3 - Alpha',
'Development Status :: 4 - Beta',
# 'Development Status :: 5 - Production/Stable',
# 'Development Status :: 6 - Mature',
# 'Development Status :: 7 - Inactive',
],
)