-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (34 loc) · 1.11 KB
/
setup.py
File metadata and controls
39 lines (34 loc) · 1.11 KB
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
""" The CompEcon package setup.
Based on setuptools
Randall Romero-Aguilar, 2015-2024
"""
from setuptools import setup
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name='compecon',
version='2024.05.19',
description='A Computational Economics Toolbox',
long_description=long_description,
long_description_content_type='text/markdown',
url='http://randall-romero.com/code/compecon',
author='Randall Romero-Aguilar',
author_email='randall.romero@outlook.com',
keywords='computations economics numerical methods',
packages=['compecon', 'compecon.demos','textbook','notebooks'],
python_requires='>=3.7',
install_requires=[
'numpy>=2.4.2',
'scipy>=1.17.1',
'pandas>=3.0.1',
'numba>=0.63.1',
'matplotlib>=3.10.8',
'seaborn>=0.13.2',
'sympy>=1.14.0',
'ipython>=9.10.0',
'nose'],
project_urls={
'Bug Reports': 'https://github.com/randall-romero/CompEcon/issues',
'Source': 'https://github.com/randall-romero/CompEcon/'
}
)