-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (35 loc) · 1.42 KB
/
setup.py
File metadata and controls
40 lines (35 loc) · 1.42 KB
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
"""Installation instructions for portbuilder"""
from distutils.core import setup
long_description="""
A concurrent ports building tool. Although FreeBSD ports supports building a
single port using multiple jobs (via MAKE_JOBS) however it cannot build
multiple ports concurrently. This tool accomplishes just that.
Some of its key features:
* Concurrent port building
* Load control
* Top like UI
* Persistent builds (by default)
WWW: http://github.com/DragonSA/portbuilder/
"""
setup(name='portbuilder',
version="0.1.5.4",
description="Concurrent FreeBSD port builder",
long_description=long_description,
author="David Naylor",
author_email="naylor.b.david@gmail.com",
url="http://github.com/DragonSA/portbuilder/",
download_url="http://cloud.github.com/downloads/DragonSA/portbuilder/portbuilder-0.1.5.4.tar.xz",
packages=["libpb", "libpb/port", "libpb/pkg", "libpb/stacks",],
scripts=["portbuilder",],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Environment :: Console :: Curses",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: POSIX :: BSD :: FreeBSD",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
]
)