forked from tazjel/declaracad
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 735 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
"""
Copyright (c) 2017, Jairus Martin.
Distributed under the terms of the GPL v3 License.
The full license is in the file COPYING.txt, distributed with this software.
Created on Dec 13, 2017
"""
from setuptools import setup, find_packages
setup(
name='declaracad',
version='0.1.',
description='Parametric 3D modeling with enaml and OpenCascade',
long_description=open('README.md').read(),
author='CodeLV',
author_email='frmdstryr@gmail.com',
license=open('LICENSE').read(),
url='https://github.com/codelv/declaracad',
packages=find_packages(),
install_requires=['enaml', 'jsonpickle', 'qtconsole', 'pyflakes',
'QScintilla', 'numpydoc', 'markdown'],
)