-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
35 lines (32 loc) · 2.12 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]
# normal setuptool inputs
setuptools.setup(
name='pollination-dragonfly-annual-energy-use', # will be used for package name unless it is overwritten using __queenbee__ info.
author='ladybug-tools', # the owner account for this package - required if pushed to Pollination
author_email='info@ladybug.tools',
packages=setuptools.find_namespace_packages( # required - that's how pollination find the package
include=['pollination.*'], exclude=['tests', '.github']
),
install_requires=requirements,
use_scm_version=True,
setup_requires=['setuptools_scm'],
url='https://github.com/pollination/dragonfly-annual-energy-use', # will be translated to home
project_urls={
'icon': 'https://raw.githubusercontent.com/ladybug-tools/artwork/master/icons_components/dragonfly/png/dfeui.png',
'docker': 'https://hub.docker.com/r/ladybugtools/dragonfly-energy'
},
description='Run an annual energy simulation for a Dragonfly Model and compute energy use intensity.', # will be used as package description
long_description=long_description, # will be translated to ReadMe content on Pollination
long_description_content_type="text/markdown",
maintainer='chris, ladybug-tools', # Package maintainers. For multiple maintainers use comma
maintainer_email='chris@ladybug.tools, info@ladybug.tools',
keywords='dragonfly, energy, ladybug-tools, energyplus, openstudio, energy, dragonfly-annual-energy-use', # will be used as keywords
license='PolyForm Shield License 1.0.0, https://polyformproject.org/wp-content/uploads/2020/06/PolyForm-Shield-1.0.0.txt', # the license link should be separated by a comma
zip_safe=False
)