Skip to content

Commit

Permalink
fix up versions of python/django in setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobin Brown committed Feb 4, 2020
1 parent 8043c02 commit 633d7ff
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion django_seed/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import random


__version__ = '0.2.0'
__version__ = '0.2.1'


class Seed(object):
Expand Down
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def find_version(*file_paths):
name='django-seed',
version=find_version('django_seed', '__init__.py'),
author='Tobin Brown',
author_email='[email protected]',
author_email='[email protected]',
packages=['django_seed', 'django_seed.management', 'django_seed.management.commands'],
include_package_data=True,
url='http://github.com/brobin/django-seed',
Expand All @@ -41,15 +41,16 @@ def find_version(*file_paths):
'License :: OSI Approved :: MIT License',
'Framework :: Django',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Testing',
'Topic :: Utilities',
Expand Down

0 comments on commit 633d7ff

Please sign in to comment.