-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (24 loc) · 730 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (24 loc) · 730 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
26
27
28
29
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
diffrend setup
To develop: python setup.py develop --user
"""
from setuptools import setup, find_packages
# Find all packages
packages = find_packages()
# Add other file types to package
package_data = {}
for package in packages:
package_data[package] = ['*.m', '*.c', '*.cpp', '*.h', '*.hpp', '*Makefile']
setup(name='diffrend',
version='0.1',
description='Differentiable Renderer',
author='Fahim Mannan',
author_email='fmannan@gmail.com',
url='https://cim.mcgill.ca/~fmannan/diffrend',
packages=packages,
package_data=package_data,
zip_safe=False,
requires=['numpy', 'tensorflow', 'scipy', 'PyQt5', 'torch']
)