Skip to content

Commit d0481ca

Browse files
author
Florian Einfalt
committed
Initial commit
0 parents  commit d0481ca

File tree

6 files changed

+47
-0
lines changed

6 files changed

+47
-0
lines changed

.gitignore

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
.tox/*
2+
.idea/*
3+
.cache/*
4+
__pycache__/*
5+
bin/*
6+
docs/build/*
7+
docs/_build/*
8+
tests/assets/production/*
9+
*.egg
10+
*.egg-info
11+
*.log
12+
*.pyc
13+
*.pyd
14+
*.pyo
15+
.DS_Store
16+
.coverage
17+
dist
18+
build

MANIFEST.in

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include README.rst
2+
include .gitignore

README.rst

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
nukecontexts
2+
============
3+
4+
nukecontexts is a library of composable context managers for Nuke to manage the state of complex compositing scripts in code.

nukecontexts/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__version__ = '0.1'

setup.cfg

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[bdist_wheel]
2+
universal = 0
3+
4+
[egg_info]
5+
tag_build =
6+
tag_date = 0
7+
tag_svn_revision = 0
8+

setup.py

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(
4+
name = 'nukecontexts',
5+
version = '0.1',
6+
description='Library of composable context managers for Nuke',
7+
url='http://www.florianeinfalt.de',
8+
author='Florian Einfalt',
9+
author_email='info@florianeinfalt.de',
10+
license='MIT',
11+
packages=find_packages(),
12+
include_package_data=True,
13+
zip_safe=False
14+
)

0 commit comments

Comments
 (0)