-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
26 lines (19 loc) · 793 Bytes
/
setup.py
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
"""Setup script for contextfree package."""
import setup_boilerplate
class Package(setup_boilerplate.Package):
"""Package metadata."""
name = 'contextfree'
description = 'cfdg-inspired cairo-based pythonic generative art framework'
url = "https://github.com/undertherain/pycontextfree"
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only']
keywords = ['generative', 'art', 'graphics']
if __name__ == '__main__':
Package.setup()