-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (28 loc) · 995 Bytes
/
setup.py
File metadata and controls
32 lines (28 loc) · 995 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Created on Thu Dec 14 12:40:18 2017
@author: wolfgang-302
"""
from distutils.core import setup
setup(name='fun-expr',
version='0.1',
description='Create a sympy function from an expression',
author='wolfgang-302',
author_email='11839527+wolfgang-302@users.noreply.github.com',
packages=['fun_expr'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
install_requires=['sympy'],
license='MIT License',
)