Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
django-representatives
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Political Memory
django-representatives
Commits
af49edc9
Commit
af49edc9
authored
Jun 14, 2016
by
Nicolas Joyard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix uncontrolled dependencies
parent
09be11f6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
6 deletions
+15
-6
.travis.yml
.travis.yml
+2
-3
setup.py
setup.py
+13
-3
No files found.
.travis.yml
View file @
af49edc9
sudo
:
false
language
:
python
env
:
-
DJANGO
="django>1.8,<1.9" DJANGO
_SETTINGS_MODULE=representatives.tests.settings
-
DJANGO_SETTINGS_MODULE=representatives.tests.settings
python
:
-
"
2.7"
before_install
:
-
pip install codecov
install
:
-
pip install $DJANGO pep8 flake8 pytest-django pytest-cov codecov django-responsediff
-
pip install -e .[api]
-
pip install -e .[api,testing]
script
:
-
pep8 representatives/ --exclude migrations --ignore E128
-
flake8 representatives/ --exclude migrations --ignore E128
...
...
setup.py
View file @
af49edc9
...
...
@@ -12,13 +12,23 @@ setup(
license
=
'GPLv3'
,
keywords
=
'django government parliament'
,
install_requires
=
[
'ijson'
,
'django>=1.8,<1.9'
,
'ijson>=2,<3'
,
],
extras_require
=
{
'celery'
:
'celery'
,
'api'
:
[
'django-filter'
,
'djangorestframework'
,
'django-filter>=0.13,<0.14'
,
'djangorestframework>=3,<4'
,
],
'testing'
:
[
'codecov>=2,<3'
,
'flake8>=2,<3'
,
'pep8>=1,<2'
,
'pytest>=2,<3'
,
'pytest-django>=2,<3'
,
'pytest-cov>=2,<3'
,
'django-responsediff>=0.6,<0.7'
]
},
entry_points
=
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment