-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Aravinda Vishwanathapura <[email protected]>
- Loading branch information
1 parent
2919328
commit 8ee377d
Showing
4 changed files
with
60 additions
and
1 deletion.
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
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,3 +1,5 @@ | ||
bin | ||
lib | ||
__pycache__ | ||
__pycache__ | ||
*.egg-info | ||
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
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,35 @@ | ||
from setuptools import setup | ||
|
||
# def version(): | ||
# with open("VERSION") as version_file: | ||
# return version_file.read().strip() | ||
|
||
def version(): | ||
return "v0.2.0" | ||
|
||
setup( | ||
name="kadalu_volgen", | ||
version=version(), | ||
packages=["kadalu_volgen"], | ||
include_package_data=True, | ||
install_requires=[], | ||
platforms="linux", | ||
zip_safe=False, | ||
author="Kadalu Authors", | ||
author_email="[email protected]", | ||
description="Kadalu Volfile Generation", | ||
license="GPL-3.0", | ||
keywords="kadalu, volgen, volfile", | ||
url="https://github.com/kadalu/volgen", | ||
long_description=""" | ||
Kadalu Volgen - CLI to generate Volfiles for | ||
Kadalu Storage or GlusterFS | ||
""", | ||
classifiers=[ | ||
"Topic :: Utilities", | ||
"Environment :: Console", | ||
"Operating System :: POSIX :: Linux", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3 :: Only", | ||
], | ||
) |