-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
25 lines (22 loc) · 877 Bytes
/
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
from setuptools import setup, find_packages
# read the contents of your README file (https://packaging.python.org/en/latest/guides/making-a-pypi-friendly-readme/)
from pathlib import Path
this_directory = Path(__file__).parent
readme = (this_directory / "README.md").read_text()
# Read version information without loading all the library
with open('mitransient/version.py') as f:
exec(f.read())
setup(
name='mitransient',
version=__version__,
description='Transient rendering extensions for Mitsuba 3',
url='https://github.com/diegoroyo/mitransient',
author='Diego Royo, Miguel Crespo, Jorge García',
author_email='droyo@unizar.es',
license='BSD',
packages=find_packages(),
install_requires=[f"mitsuba>={__mi_version__}"],
long_description=readme,
long_description_content_type="text/markdown",
python_requires=">=3.8"
)