-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare for pypi.org distribution and release 1.0.0
Restructured to be capable of distributing towards pypi.org
- Loading branch information
1 parent
f00332b
commit b041582
Showing
3 changed files
with
40 additions
and
8 deletions.
There are no files selected for viewing
Empty file.
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,34 @@ | ||
import pathlib | ||
import setuptools | ||
|
||
# The directory containing this file | ||
HERE = pathlib.Path(__file__).parent | ||
|
||
# The text of the README file | ||
README = (HERE / "README.md").read_text() | ||
|
||
# This call to setup() does all the work | ||
setuptools.setup( | ||
name="git-relevant-history", | ||
version="1.0.0", | ||
description="Extract subproject with just the relevant history", | ||
long_description=README, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/rainlabs-eu/git-relevant-history", | ||
author="Rainlabs", | ||
author_email="[email protected]", | ||
license="Apache License 2.0", | ||
classifiers=[ | ||
"License :: OSI Approved :: Apache Software License", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.7", | ||
], | ||
packages=setuptools.find_packages(exclude=("tests",)), | ||
include_package_data=True, | ||
install_requires=[], | ||
entry_points={ | ||
"console_scripts": [ | ||
"git-relevant-history=gitrelevanthistory.main:main", | ||
] | ||
}, | ||
) |