Skip to content

Commit

Permalink
Updated setup
Browse files Browse the repository at this point in the history
  • Loading branch information
timmyomahony committed Aug 16, 2018
1 parent 7d32157 commit 5a45920
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2012 Timmy O'Mahony
Copyright (c) 2018 Timmy O'Mahony

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
4 changes: 4 additions & 0 deletions MANIFEST.in
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
2 changes: 1 addition & 1 deletion charsleft_widget/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = ("0","0","1")
VERSION = ("0","1","0")
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 5a45920

Please sign in to comment.