diff --git a/README.md b/README.md index 28244d1..4db5475 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,21 @@ Racing competition manager in Django where you can manage different motor competitions with its own punctuation rules, races, drivers, teams which, at the same time, can be part of multiple competitions. +Modify your settings.py +======================= +``` +INSTALLED_APPS = [ + 'bootstrap3', +... + 'django_countries', + 'tabbed_admin', + 'driver27' +] + + +TABBED_ADMIN_USE_JQUERY_UI = True +``` + Versions ======== - 0.14-ALO (Fernando Alonso 14) diff --git a/setup.py b/setup.py index aa81e8d..2c2b86d 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -from setuptools import setup +from setuptools import setup, find_packages with open('requirements.txt') as f: requirements = f.read().splitlines() @@ -9,8 +9,9 @@ setup( name='django-driver27', - version='0.14.0', - packages=['driver27', 'driver27.tests', 'driver27.migrations'], + version='0.14c', + include_package_data=True, + packages=find_packages(), url='https://github.com/SRJ9/django-driver27.git', download_url='https://github.com/SRJ9/django-driver27/archive/master.zip', license='MIT', @@ -18,7 +19,7 @@ author_email='srj9es@gmail.com', description='Racing competition manager based on Django', install_requires=requirements, - long_description = README_TEXT, + long_description=README_TEXT, keywords=['Django', 'motorsport', 'formula one', 'formula 1', 'f1', 'manager'], classifiers=[ # How mature is this project? Common values are @@ -33,12 +34,13 @@ 'Intended Audience :: Developers', 'Intended Audience :: End Users/Desktop', 'License :: OSI Approved :: MIT License', - - # Specify the Python versions you support here. In particular, ensure - # that you indicate whether you support Python 2, Python 3 or both. + # + # # Specify the Python versions you support here. In particular, ensure + # # that you indicate whether you support Python 2, Python 3 or both. 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', - 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.5' ] + )