forked from kennt/pylinsolve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (25 loc) · 882 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
27
28
29
30
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='pysolve',
version='0.1.7',
packages=find_packages(),
install_requires=['sympy', 'numpy'],
license='MIT',
author='Kenn Takara',
author_email='[email protected]',
classifiers={
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Mathematics',
},
url='https://github.com/kennt/pylinsolve',
long_description=read('README.rst'),
description='A simple interface for solving systems of linear equations',
)