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.

14 lines
371 B

  1. from distutils.core import setup
  2. with open('requirements.txt') as file:
  3. INSTALL_REQUIRES = file.readlines()
  4. setup(
  5. version='1.0',
  6. name='linkstore',
  7. description='Django app for collapsible link categories',
  8. author='Raphael Roberts',
  9. packages=['linkstore'],
  10. author_email='raphael.roberts48@gmail.com',
  11. install_requires=INSTALL_REQUIRES,
  12. )