Skip to content

Commit

Permalink
Revert " Setup.py: Get requirements from requirements.txt file "
Browse files Browse the repository at this point in the history
  • Loading branch information
lcmartinezdev committed Feb 20, 2018
1 parent a2e2be0 commit c366eef
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions setup.py
Expand Up @@ -2,22 +2,14 @@
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup


def get_long_description():
with open('README.rst') as file:
return file.read()


def get_requirements():
with open('requirements.txt') as file:
return file.read()

with open('README.rst') as file:
long_description = file.read()

setup(
name='django-qa',
version='0.9.4.2',
description='Pluggable django app for Q&A',
long_description=get_long_description(),
long_description=long_description,
author='arjunkomath, cdvv7788, sebastian-code, jlariza, swappsco',
author_email='dev@swapps.co',
url='https://github.com/swappsco/django-qa',
Expand All @@ -41,7 +33,13 @@ def get_requirements():
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
],
install_requires=get_requirements(),
install_requires=[
'django-annoying==0.10.3',
'django-markdown-app==0.9.3.1',
'django-taggit==0.22.1',
'pytz==2017.2',
'django-hitcount==1.2.2'
],
extras_require={
'i18n': [
'django-modeltranslation>=0.5b1',
Expand Down

0 comments on commit c366eef

Please sign in to comment.