Simple django app to display links
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

15 lines
426 B

from distutils.core import setup
with open('requirements.txt') as file:
INSTALL_REQUIRES = file.readlines()
setup(
version='1.0',
name='linkstore',
description='Django app for collapsible link categories',
author='Raphael Roberts',
packages=['linkstore', 'linkstore.migrations'],
author_email='raphael.roberts48@gmail.com',
install_requires=INSTALL_REQUIRES,
include_package_data=True,
)