-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (27 loc) · 1.06 KB
/
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
27
28
29
30
31
32
from distutils.core import setup
CONFIG = {
'name' : 'lsystems',
'description' : 'Implementation of L-Systems',
'version' : '0.1.1',
'author' : 'Krzysztof Voss',
'author_email' : '[email protected]',
'license' : 'BSD',
'platforms' : ['POSIX',],
'keywords' : 'LSystem, turtle, fractals, rewrite',
'py_modules' : ['lsystem'],
'url' : 'https://github.com/kvoss/lsystem',
'download_url' : 'https://github.com/kvoss/lsystem',
'classifiers' : [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
}
setup(**CONFIG)