Changeset - 9d0858d255f3
[Not reviewed]
0 2 0
Branko Majic (branko) - 6 years ago 2018-05-15 23:07:36
branko@majic.rs
GC-24: Exclude tests from package installation. Added build directory to .gitignore.
2 files changed with 2 insertions and 1 deletions:
0 comments (0 inline, 0 general)
.gitignore
Show inline comments
 
@@ -5,6 +5,7 @@
 
# Ignore build artefacts.
 
docs/_build/
 
dist/
 
build/
 

	
 
# Ignore Python artefacts.
 
.eggs/
setup.py
Show inline comments
 
@@ -68,7 +68,7 @@ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
 
setup(
 
    name='gimmecert',
 
    version='0.0.0',
 
    packages=find_packages(),
 
    packages=find_packages(exclude=['tests', 'functional_tests']),
 
    include_package_data=True,
 
    license='GPLv3+',
 
    description='A simple tool for quickly issuing server and client certificates.',
0 comments (0 inline, 0 general)