-
Notifications
You must be signed in to change notification settings - Fork 21
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
7d32157
commit 5a45920
Showing
4 changed files
with
12 additions
and
7 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
include *.txt | ||
include *.md | ||
recursive-include charsleft_widget/static/ *.js *.css | ||
recursive-include charsleft_widget/locale/ *.mo *.po |
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 +1 @@ | ||
VERSION = ("0","0","1") | ||
VERSION = ("0","1","0") |
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 |
---|---|---|
|
@@ -3,25 +3,26 @@ | |
|
||
from charsleft_widget import VERSION | ||
|
||
f = open(os.path.join(os.path.dirname(__file__), 'README.md')) | ||
readme = f.read() | ||
f.close() | ||
|
||
setup( | ||
name='django-charsleft-widget', | ||
version=".".join(map(str, VERSION)), | ||
license='BSD License', | ||
description='A django widget that displays a normal text input with a remaining character count beside it.', | ||
long_description=readme, | ||
author="Timmy O'Mahony", | ||
author_email='[email protected]', | ||
description='A django widget that displays a normal text input with a remaining character count beside it.', | ||
long_description=open('README.md').read(), | ||
url='https://github.com/timmyomahony/django-charsleft-widget', | ||
packages=find_packages(), | ||
package_data={ | ||
'charsleft_widget': [ | ||
], | ||
}, | ||
include_package_data=True, | ||
# _Should_ work back to 1.10 but untested | ||
install_requires=[ | ||
"Django >= 1.8", | ||
], | ||
zip_safe=False, | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
|