-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
39 lines (35 loc) · 2.1 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
36
37
38
39
#!/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]
with open('extras-requirements.txt') as f:
extras_requirements = f.read().splitlines()
extras_requirements = [req.replace('==', '>=') for req in extras_requirements]
# normal setuptool inputs
setuptools.setup(
name='pollination-pmv-comfort-map', # will be used for package name
author='ladybug-tools', # 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,
extras_require={'viz': extras_requirements},
use_scm_version=True,
setup_requires=['setuptools_scm'],
url='https://github.com/pollination/pmv-comfort-map', # will be translated to home
project_urls={
'icon': 'https://raw.githubusercontent.com/ladybug-tools/artwork/master/icons_components/honeybee/png/pmvmap.png'
},
description='PMV thermal comfort map 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='chris, ladybug-tools', # Package maintainers. For multiple maintainers use comma
maintainer_email='[email protected], [email protected]',
keywords='honeybee, ladybug-tools, thermal, comfort, pmv',# 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
)