-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
35 lines (31 loc) · 1.33 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env python
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
requirements = [req.replace('==', '>=') for req in requirements]
setuptools.setup(
name='pollination-dragonfly-energy',
author='ladybug-tools',
author_email='info@ladybug.tools',
maintainer='chris, ladybug-tools',
maintainer_email='chris@ladybug.tools, info@ladybug.tools',
packages=setuptools.find_namespace_packages(
include=['pollination.*'], exclude=['tests', '.github']
),
install_requires=requirements,
use_scm_version=True,
setup_requires=['setuptools_scm'],
url='https://github.com/pollination/dragonfly-energy',
project_urls={
'icon': 'https://raw.githubusercontent.com/ladybug-tools/artwork/master/icons_bugs/grasshopper_tabs/Dragonfly.png',
'docker': 'https://hub.docker.com/r/ladybugtools/dragonfly-energy'
},
description='Dragonfly energy plugin for Pollination.',
long_description=long_description,
long_description_content_type="text/markdown",
keywords='dragonfly, energy, ladybug-tools, energyplus, openstudio',
license='PolyForm Shield License 1.0.0, https://polyformproject.org/wp-content/uploads/2020/06/PolyForm-Shield-1.0.0.txt',
zip_safe=False
)