-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathsetup.py
36 lines (28 loc) · 1.02 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
import pyworld3
description = "The World3 model revisited in Python."
setup(
name='pyworld3',
version=pyworld3.__version__,
packages=["pyworld3"],
description=description,
long_description=description,
author="Charles Vanwynsberghe",
url='http://github.com/cvanwynsberghe/pyworld3',
download_url="https://github.com/cvanwynsberghe/pyworld3/archive/v1.1.tar.gz",
install_requires=["numpy", "scipy", "matplotlib"],
include_package_data=True, # files declared in MANIFEST.in
classifiers=[
"Programming Language :: Python",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Education",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"License :: OSI Approved :: CEA CNRS Inria Logiciel Libre License, version 2.1 (CeCILL-2.1)"
],
license="CeCILL",
)