-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
61 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,7 @@ clrm-* | |
|
||
systems/* | ||
.pytest_cache/* | ||
*.egg-info | ||
build/* | ||
dist/* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ booting into it. | |
|
||
## Installation | ||
|
||
TODO: Installation is not yet supported. | ||
Use python setuptools as usual. | ||
|
||
## Tests | ||
|
||
|
@@ -24,6 +24,11 @@ Use ```pytest tests``` in the top level directory to run all tests. | |
|
||
* Tobias Hunger <[email protected]> | ||
|
||
## Code of Conduct | ||
|
||
Everybody is expected to follow the Python Community Code of Conduct | ||
https://www.python.org/psf/codeofconduct/ | ||
|
||
## License | ||
|
||
All files in cleanroom are under GPL v3 (or later). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,4 +10,4 @@ import cleanroom.main as main | |
|
||
|
||
if __name__ == '__main__': | ||
main.main() | ||
main.run() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
FIXME: Write docs... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,51 @@ | ||
from setuptools import setup, find_packages | ||
from codecs import open | ||
from os import path | ||
|
||
here = path.abspath(path.dirname(__file__)) | ||
|
||
# Get the long description from the README file | ||
with open(path.join(here, 'README.md'), encoding='utf-8') as f: | ||
long_description = f.read() | ||
|
||
setup( | ||
name='cleanroom', | ||
description='Linux system image creator', | ||
version='0.1', | ||
# Package data: | ||
name='cleanroom', | ||
description='Linux system image creator', | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
version='0.1', | ||
python_requires='>=3.5', | ||
url='https://gitlab.con/hunger/cleanroom', | ||
project_urls={ | ||
'Source code': 'https://gitlab.com/hunger/cleanroom', | ||
'Code of Conduct': 'https://www.python.org/psf/codeofconduct/', | ||
}, | ||
|
||
author='Tobias Hunger', | ||
author_email='[email protected]', | ||
|
||
classifiers=[ | ||
'Development Status :: 4 - Beta' | ||
|
||
'Intended Audience :: Developers', | ||
'Topic :: Software Development :: Build Tools', | ||
'Environment :: Console', | ||
|
||
'License :: OSI Approved :: GPL License', | ||
|
||
author='Tobias Hunger', | ||
author_email='[email protected]', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
], | ||
|
||
url='https://gitlab.com/hunger/cleanroom', | ||
keywords='Linux stateless immutable install image', | ||
|
||
packages=find_packages() | ||
# Contents: | ||
packages=find_packages(exclude=['systems', 'examples', 'docs', 'tests']), | ||
package_data={'cleanroom': ['commands/*.py']}, | ||
entry_points={ | ||
'console_scripts': [ | ||
'cleanroom=cleanroom.main:run', | ||
], | ||
}, | ||
) |