-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (39 loc) · 1.39 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
from setuptools import setup, find_packages
version = '0.1'
setup(name='inqbus.installer',
version=version,
description="Installs your python code local or remote",
long_description=open("README.txt").read() + "\n" +
open("LICENSE.txt").read() + "\n" +
open("HISTORY.txt").read(),
# Get more strings from
# http://pypi.python.org/pypi?:action=list_classifiers
classifiers=[
"Programming Language :: Python",
"Intended Audience :: System Administrators",
"License :: Other/Proprietary License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
keywords='installation python deployment',
author='Volker Jaenisch, Sandra Rum',
author_email='[email protected], [email protected]',
url='http://inqbus.de',
download_url='',
license='other',
packages=find_packages('src', exclude=['ez_setup']),
namespace_packages=['inqbus', 'inqbus.installer'],
package_dir={'': 'src'},
zip_safe=False,
install_requires=[
'setuptools',
'fabric'
# -*- Extra requirements: -*-
],
entry_points="""
# -*- Entry points: -*-
[console_scripts]
test_installer = inqbus.installer.test:main
"""
)