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.

2 jaren geleden
12345678910111213141516171819
  1. from setuptools import find_packages, setup
  2. with open("requirements.txt") as f:
  3. install_requires = f.read().strip().split("\n")
  4. # get version from __version__ variable in pay/__init__.py
  5. from payments import __version__ as version
  6. setup(
  7. name="payments",
  8. version=version,
  9. description="Payments app for influxframework",
  10. author="InfluxFramework LLC",
  11. author_email="hello@influxframework.com",
  12. packages=find_packages(),
  13. zip_safe=False,
  14. include_package_data=True,
  15. install_requires=install_requires,
  16. )