Skip to content

Commit

Permalink
getting ready for pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
suchow committed Sep 30, 2015
1 parent 6ad0d42 commit 281f589
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ proselint/proselint_develop.sublime-project
proselint/proselint_develop.sublime-workspace
corpora/*
!corpora/README.md
dist/
2 changes: 1 addition & 1 deletion proselint/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Wallace version number."""

__version__ = "0.2.0"
__version__ = "0.2.1"
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
20 changes: 14 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,17 @@
from setuptools import setup
from proselint.version import __version__

base_url = 'http://github.com/amperser/proselint'

setup(
name='proselint',
version=__version__,
description='Making your writing better',
url='http://github.com/amperser/proselint',
author='Jordan Suchow',
author_email='[email protected]',
license='MIT',
description='A linter for prose',
url=base_url,
download_url="{}/tarball/{}".format(base_url,__version__),
author='Amperser Labs',
author_email='[email protected]',
license='BSD',
packages=[
'proselint',
'proselint.checks',
Expand All @@ -29,4 +32,9 @@
'console_scripts': [
'proselint = proselint.command_line:proselint',
],
})
},
install_requires=[
'click',
'future',
'six'
])

0 comments on commit 281f589

Please sign in to comment.