-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
19 lines (18 loc) · 1.15 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup
setup(
name='DifferentiableSketching',
version='0.0.1',
packages=['dsketch', 'dsketch.losses', 'dsketch.utils', 'dsketch.raster', 'dsketch.models', 'dsketch.datasets', 'dsketch.experiments.shared', 'dsketch.experiments', 'dsketch.experiments.imageopt', 'dsketch.experiments.characters', 'dsketch.experiments.characters.models'],
url='github.com/jonhare/DifferentiableSketching',
license='BSD 3-Clause',
author='Jonathon Hare <[email protected]>, Daniela Mihai <[email protected]>',
author_email='[email protected]',
description='PyTorch differentiable rasterisation for lines, points and curves',
entry_points={
'console_scripts': ['imageopt=dsketch.experiments.imageopt.imageopt:main',
'autoencoder-experiment=dsketch.experiments.characters.autoencoder:main',
'train_classifiers=dsketch.experiments.classifiers.train:main',
'train_classifiers_barlow=dsketch.experiments.classifiers.train_barlow:main',
'evaluate_one_shot=dsketch.experiments.classifiers.evaluate_one_shot:main']
}
)