Skip to content

Commit

Permalink
v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
asottile committed Jun 11, 2018
1 parent 51b4983 commit 3a2f5c1
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,20 @@

setup(
name='dumb-pypi',
version='1.2.1',
version='1.3.0',
author='Chris Kuehl',
author_email='ckuehl@ocf.berkeley.edu',
url='https://github.com/chriskuehl/dumb-pypi',
packages=('dumb_pypi',),
install_requires=(
packages=['dumb_pypi'],
install_requires=[
'distlib',
'jinja2',
'packaging',
),
classifiers=(
],
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
),
entry_points={
'console_scripts': (
'dumb-pypi = dumb_pypi.main:main',
),
},
package_data={'dumb_pypi': ('templates/*',)},
],
entry_points={'console_scripts': ['dumb-pypi = dumb_pypi.main:main']},
package_data={'dumb_pypi': ['templates/*']},
)

0 comments on commit 3a2f5c1

Please sign in to comment.