forked from Ex-Mente/auxi.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (40 loc) · 1.79 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
33
34
35
36
37
38
39
40
41
42
43
44
# USAGE: you probably want 'setup.py install' - but execute 'setup.py --help'
# for all the details.
# from setuptools import setup, Extension, Command
# from distutils.core import setup
from setuptools import setup
# build the distribution
setup(name='auxi',
version='0.2.3',
description='A toolkit to help metallurgical process engineers to '
'rapidly do day-to-day calculations.',
long_description=open('README.md').read(),
author='Ex Mente (Pty) Ltd',
author_email='[email protected]',
maintainer='Ex Mente (Pty) Ltd',
maintainer_email='[email protected]',
url='https://github.com/Ex-Mente/auxi.0',
download_url='https://pypi.python.org/pypi/auxi',
license='LGPL v3.0',
keywords='metallurgy,chemistry,modelling,simulation,thermochemistry,'
'engineering,mass balance,energy balance',
platforms='Ubunutu 14.04,Ubuntu 15.04,Windows 7 (For the stoichiometry '
'and thermochemistry tools only.)',
package_dir={'auxi': 'src'},
packages=['auxi',
'auxi.core',
'auxi.modelling',
'auxi.modelling.process',
'auxi.modelling.process.materials',
'auxi.modelling.financial',
'auxi.modelling.business',
'auxi.tools',
'auxi.tools.chemistry',
'auxi.examples'],
package_data={'auxi.tools.chemistry': [r'data/*.json',
r'data/rao/*.json',
r'data/nist/*.json'],
'auxi.modelling.process.materials': [r'data/*.txt'],
'auxi': [r'*.txt', r'doc/*.pdf']},
install_requires=['jsonpickle', 'tabulate', 'enum34', 'python-dateutil']
)