Skip to content

Commit

Permalink
First release: v0.14c
Browse files Browse the repository at this point in the history
  • Loading branch information
SRJ9 committed Nov 4, 2016
1 parent df8fd1f commit f7ee5b7
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 8 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
18 changes: 10 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from setuptools import setup
from setuptools import setup, find_packages

with open('requirements.txt') as f:
requirements = f.read().splitlines()
Expand All @@ -9,16 +9,17 @@

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',
author='Jose ER',
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
Expand All @@ -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'
]

)

0 comments on commit f7ee5b7

Please sign in to comment.