-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
30 lines (26 loc) · 897 Bytes
/
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
import os
import itertools
import platform
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), "dwight_chroot", "__version__.py")) as version_file:
exec(version_file.read())
_INSTALL_REQUIRES = []
setup(name="dwight-chroot",
classifiers = [
"Programming Language :: Python :: 2.7",
],
description="Utility for creating and managing Linux based isolated development environments, using chroot",
license="BSD",
author="Rotem Yaari",
author_email="vmalloc@gmail.com",
version=__version__,
packages=find_packages(exclude=["tests"]),
install_requires=_INSTALL_REQUIRES,
scripts=[],
namespace_packages=[],
entry_points = dict(
console_scripts = [
"dwight = dwight_chroot.scripts.dwight:main_entry_point",
]
),
)