Skip to content

Commit

Permalink
requirements.txt for travis, setup.py for builds
Browse files Browse the repository at this point in the history
  • Loading branch information
eyemyth committed Jan 3, 2020
1 parent c27491f commit 432bfdc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
1 change: 1 addition & 0 deletions requirements.txt
@@ -1,3 +1,4 @@
beautifulsoup4==4.4.0
djangorestframework>=2.4.8
markdown2>=2.3.0
git+https://github.com/eyemyth/django-jsonfield.git#egg=jsonfield
13 changes: 6 additions & 7 deletions setup.py
Expand Up @@ -2,12 +2,6 @@
from distutils.core import setup
from setuptools import find_packages

with open('requirements.txt') as f:
install_requires = f.read().strip().split('\n')
install_requires += [
'git+https://github.com/eyemyth/django-jsonfield.git#egg=jsonfield',
]

setup(
name='django-textplusstuff',
packages=find_packages(exclude=['tests*', 'docs*']),
Expand All @@ -22,7 +16,12 @@
),
long_description=open('README.rst').read(),
zip_safe=False,
install_requires=install_requires,
install_requires=[
'beautifulsoup4==4.4.0',
'djangorestframework>=2.4.8',
'markdown2>=2.3.0',
'git+https://github.com/eyemyth/django-jsonfield.git#egg=jsonfield',
],
package_data={
'textplusstuff': [
'static/textplusstuff/darkly/*.css',
Expand Down

0 comments on commit 432bfdc

Please sign in to comment.