Skip to content

Commit

Permalink
Add PyPI setup.py options and setup.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
agamm committed Mar 1, 2019
1 parent 19a233d commit fce0add
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
16 changes: 16 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@

setup(
name='comeback',
packages=['comeback'],
version='0.0.1',
author='agamm',
description='Comeback right to your project\'s last state',
url='https://github.com/agamm/comeback',
keywords=['autorun', 'comeback', 'project restoration', 'auto open'],
py_modules=['src'],
license="MIT",
install_requires=[
Expand All @@ -12,4 +17,15 @@
entry_points={
'console_scripts': ['comeback=comeback.main:cli'],
},
download_url='https://github.com/agamm/comeback/archive/v0.0.1-alpha.tar.gz',
classifiers=[
'Development Status :: 3 - Alpha',
# "3 - Alpha", "4 - Beta" or "5 - Production/Stable"
'Intended Audience :: Developers',
# Define that your audience are developers
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
)

0 comments on commit fce0add

Please sign in to comment.