forked from Stratoscale/inaugurator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 705 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 705 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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="inaugurator",
version="1.0",
author="Shlomo Matichin",
author_email="shlomomatichin@gmail.com",
description=(
"Osmos complete rootfs images by booting this initrd,"
"from the network or a DOK"),
keywords="Osmosis rootfs initrd boot",
url="http://packages.python.org/inaugurator",
packages=['inaugurator', 'inaugurator.pyudev', 'inaugurator.server'],
long_description=read('README.md'),
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
],
requires=['pyudev'],
)