-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (24 loc) · 1.03 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
import setuptools
#import wget
from setuptools import setup
#URL = "https://gitlab.com/arep-dev/pyViewFactor/-/raw/main/README.md?inline=false"
#response = wget.download(URL, "README.md")
with open('README.md') as f:
long_description = f.read()
setuptools.setup(
name="pyviewfactor",
version="0.0.11",
author="Mateusz BOGDAN, Edouard WALTHER, Marc ALECIAN, Mina CHAPON",
description="A python library to calculate numerically exact radiation view factors between planar faces.",
packages=["pyviewfactor"],
long_description=long_description,
long_description_content_type='text/markdown', # This is important!
url='https://gitlab.com/arep-dev/pyViewFactor/',
license='MIT',
project_urls={
"Documentation" : "https://arep-dev.gitlab.io/pyViewFactor/",
"Bug Tracker": "https://gitlab.com/arep-dev/pyViewFactor/-/issues",
"Source Code": "https://gitlab.com/arep-dev/pyViewFactor/",
},
keywords='radiative-transfer radiation vtk geometry ViewFactor STL visibility',
)