-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding references + improving setup.py (including short desc)
- Loading branch information
Showing
3 changed files
with
11 additions
and
11 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
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 |
---|---|---|
|
@@ -5,24 +5,25 @@ | |
# packages with python3 setup.py -v sdist | ||
|
||
from setuptools import setup, find_packages | ||
from bopscrk.bopscrk import __version__ | ||
from bopscrk.bopscrk import __version__, desc | ||
|
||
# Read project description | ||
with open('README.md', 'r') as f: | ||
long_desc = f.read() | ||
|
||
setup( | ||
name='bopscrk', | ||
version=__version__, | ||
url='https://github.com/r3nt0n/bopscrk', | ||
author='r3nt0n', | ||
author_email='[email protected]', | ||
url='https://github.com/r3nt0n/bopscrk', | ||
version=__version__, | ||
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 *.ini files, include them | ||
# If any package contains *.cfg files, include them | ||
'': ['*.cfg'], | ||
}, | ||
#packages=['modules',], | ||
|