File tree 6 files changed +47
-0
lines changed
6 files changed +47
-0
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
1
+ include README.rst
2
+ include .gitignore
Original file line number Diff line number Diff line change
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.
Original file line number Diff line number Diff line change
1
+ __version__ = '0.1'
Original file line number Diff line number Diff line change
1
+ [bdist_wheel]
2
+ universal = 0
3
+
4
+ [egg_info]
5
+ tag_build =
6
+ tag_date = 0
7
+ tag_svn_revision = 0
8
+
Original file line number Diff line number Diff line change
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
+ )
You can’t perform that action at this time.
0 commit comments