-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (20 loc) · 694 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (20 loc) · 694 Bytes
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
# -*- coding: utf-8 -*-
from __future__ import print_function
from pathlib import Path
from setuptools import setup
import sys, re, os, pathlib
this_directory = Path(__file__).parent
with open(this_directory / 'README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name="diffshadow",
version="0.1.1",
author="Markus Worchel",
author_email="m.worchel@tu-berlin.de",
description="Differentiable shadow mapping",
url="https://github.com/mworchel/differentiable-shadow-mapping",
license="MIT",
long_description=long_description,
long_description_content_type='text/markdown',
packages=['diffshadow', 'diffshadow.simple_renderer']
)