-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 922 Bytes
/
setup.py
File metadata and controls
34 lines (32 loc) · 922 Bytes
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
from setuptools import setup, find_packages
import sys, os
setup(name='kaapi',
version='0.1b',
description="Kaapi is a CLI based LNMP installer for debian based systems.",
long_description="Kaapi is a CLI based LNMP installer for debian based systems.",
classifiers=[],
keywords='',
author='n@gu',
author_email='',
url='https://nimidam.com',
license='',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
test_suite='nose.collector',
install_requires=[
### Required to build documentation
# "Sphinx >= 1.0",
### Required for testing
"nose",
"coverage",
### Required to function
'cement',
],
setup_requires=[],
entry_points="""
[console_scripts]
kaapi = kaapi.cli.main:main
""",
namespace_packages=[],
)