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

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