Skip to content

Commit

Permalink
Reformat requirements a bit.
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-thomas committed Oct 6, 2015
1 parent 4f0e0a4 commit 413a923
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
5 changes: 1 addition & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,8 @@ colour-runner==0.0.4
coverage==4.0.0
dj-database-url==0.3
django==1.8.5
django-pgcrypto-fields==1.0.0
djangorestframework==3.2.4
factory_boy==2.5.2
flake8-import-order==0.5.1
incuna-test-utils==6.3.1
psycopg2==2.6.1
simplejson==3.8.0
wheel==0.24.0
wheel==0.24.0
3 changes: 0 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,3 @@ exclude = *migrations*
statistics = true
application-import-names = model_logging
import-order-style = google

[wheel]
universal = 1
13 changes: 12 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@
version = '0.1.0'


extras_require={
'model_logging': [
'django-pgcrypto-fields>=1.0.0,<2.0.0',
'simplejson>=3.8.0,<4.0.0',
'djangorestframework>=3.2.4,<4.0.0',
]
}


setup(
name='django-model-logging',
packages=find_packages(),
Expand All @@ -15,7 +24,7 @@
author_email='[email protected]',
url='https://github.com/incuna/django-model-logging/',
install_requires=[],
extras_require={},
extras_require=extras_require,
zip_safe=False,
license='BSD',
classifiers=[
Expand All @@ -24,7 +33,9 @@
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development :: Testing',
],
)

0 comments on commit 413a923

Please sign in to comment.