-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (32 loc) · 2.07 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-breeam-daylight-4b', # will be used for package name unless it is overwritten using __queenbee__ info.
author='pollination', # the owner account for this package - required if pushed to Pollination
author_email='[email protected]',
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/breeam-daylight-4b', # will be translated to home
project_urls={
'icon': 'https://raw.githubusercontent.com/ladybug-tools/artwork/master/icons_components/honeybee/png/breeamdaylight4b.png',
'docker': 'https://hub.docker.com/r/ladybugtools/honeybee-radiance'
},
description='BREEAM daylight 4b recipe for Pollination.', # 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='mikkel, pollination', # Package maintainers. For multiple maintainers use comma
maintainer_email='[email protected], [email protected]',
keywords='honeybee, radiance, ladybug-tools, daylight, annual-daylight, breeam-daylight-4b', # 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
)