-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add command to properly exit the entire application
- Improving docs - Code cleaning - Creating Pypi package files
- Loading branch information
Showing
5 changed files
with
81 additions
and
20 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
include LICENSE | ||
include *.in | ||
include *.py | ||
include multicat/*.cfg | ||
global-exclude *.pyc *.pyo *~ | ||
global-exclude *test* | ||
global-exclude *tmp* | ||
prune __pycache__ | ||
prune */__pycache__ | ||
prune build | ||
prune dist | ||
prune multicat/tests |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[metadata] | ||
description-file=README.md | ||
license_files=LICENSE |
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,38 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
# https://github.com/r3nt0n/multicat | ||
|
||
# packages with python3 setup.py -v sdist | ||
|
||
from setuptools import setup, find_packages | ||
from multicat.mc import __version__, desc | ||
|
||
# Read project description | ||
with open('README.md', 'r') as f: | ||
long_desc = f.read() | ||
|
||
setup( | ||
name='multicat', | ||
version=__version__, | ||
author='r3nt0n', | ||
author_email='[email protected]', | ||
url='https://github.com/r3nt0n/multicat', | ||
license='GNU General Public License v3.0', | ||
description=desc, | ||
long_description=long_desc, | ||
long_description_content_type="text/markdown", | ||
include_package_data=True, | ||
package_data={ | ||
# If any package contains *.cfg files, include them | ||
'': ['*.cfg'], | ||
}, | ||
#packages=['modules',], | ||
#packages=find_packages(), | ||
packages=['multicat'], | ||
#install_requires=[], | ||
entry_points = { | ||
'console_scripts':[ | ||
'mc = multicat.mc:main' | ||
] | ||
} | ||
) |