-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cb2626e
commit 3d83c30
Showing
3 changed files
with
96 additions
and
67 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,46 +4,46 @@ | |
|
||
from setuptools import setup, find_packages | ||
|
||
with open('README.rst') as readme_file: | ||
with open("README.rst") as readme_file: | ||
readme = readme_file.read() | ||
|
||
with open('HISTORY.rst') as history_file: | ||
with open("HISTORY.rst") as history_file: | ||
history = history_file.read() | ||
|
||
requirements = [ ] | ||
requirements = ["requests"] | ||
|
||
test_requirements = [ ] | ||
test_requirements = [] | ||
|
||
setup( | ||
author="Prabhakar Kumar", | ||
author_email='[email protected]', | ||
python_requires='>=3.6', | ||
author_email="[email protected]", | ||
python_requires=">=3.6", | ||
classifiers=[ | ||
'Development Status :: 2 - Pre-Alpha', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: MIT License', | ||
'Natural Language :: English', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
"Development Status :: 2 - Pre-Alpha", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Natural Language :: English", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
], | ||
description="Query PyPI for critical updates available available for your users installation of your package.", | ||
entry_points={ | ||
'console_scripts': [ | ||
'version_tracker=version_tracker.cli:main', | ||
"console_scripts": [ | ||
"version_tracker=version_tracker.cli:main", | ||
], | ||
}, | ||
install_requires=requirements, | ||
license="MIT license", | ||
long_description=readme + '\n\n' + history, | ||
long_description=readme + "\n\n" + history, | ||
include_package_data=True, | ||
keywords='version_tracker', | ||
name='version_tracker', | ||
packages=find_packages(include=['version_tracker', 'version_tracker.*']), | ||
test_suite='tests', | ||
keywords="version_tracker", | ||
name="version_tracker", | ||
packages=find_packages(include=["version_tracker", "version_tracker.*"]), | ||
test_suite="tests", | ||
tests_require=test_requirements, | ||
url='https://github.com/prabhakk-mw/version_tracker', | ||
version='0.1.0', | ||
url="https://github.com/prabhakk-mw/version_tracker", | ||
version="0.1.1", | ||
zip_safe=False, | ||
) |
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,7 +1,3 @@ | ||
"""Top-level package for version-tracker.""" | ||
|
||
__author__ = """Prabhakar Kumar""" | ||
__email__ = "[email protected]" | ||
__version__ = "0.1.0" | ||
|
||
from .version_tracker import * |