-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (22 loc) · 876 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
#! /usr/bin/python
from distutils.core import setup
def main():
with open('README.md') as src:
long_description = src.read()
setup(name='defode',
packages=['defode'],
version='0.1',
author='Paul Metcalfe',
author_email='[email protected]',
description='Declarative definition of systems of ordinary differential equations',
long_description=long_description,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Code Generators"
],
license='License :: OSI Approved :: BSD License')
if __name__ == '__main__':
main()