forked from IndEcol/pySUT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (29 loc) · 1.18 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
# from setuptools import setup
from distutils.core import setup
setup(
name='pysut',
version="1.1",
packages=["pysut", "pysut.tests"],
author="Stefan Pauliuk",
description="Python class for efficient handling of supply and use tables (SUTs)",
author_email="stefan.pauliuk@ntnu.no",
license=open('LICENSE.txt').read(),
install_requires=["numpy","scipy"],
long_description=open('README.md').read(),
url="https://github.com/stefanpauliuk/pySUT",
download_url = "https://github.com/stefanpauliuk/pySUT/tarball/1.1",
keywords = ['supply use table','SUT','Input-Output','Leontief'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Mathematics',
],
)