setup.py 608 B

1234567891011121314151617
  1. from setuptools import setup
  2. with open("README.md", "r") as fh:
  3. long_description = fh.read()
  4. with open(os.path.join(os.path.abspath(__file__), 'VERSION')) as file:
  5. VERSION = file.read().strip()
  6. setup(name="pyopenadr",
  7. version=VERSION,
  8. description="Python library for dealing with OpenADR",
  9. long_description=long_description,
  10. long_description_content_type="text/markdown",
  11. url="https://git.finetuned.nl/stan/pyopenadr",
  12. packages=['pyopenadr', 'pyopenadr.service'],
  13. include_package_data=True,
  14. install_requires=['xmltodict', 'aiohttp', 'apscheduler'])