-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
37 lines (28 loc) · 1.01 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
import pyworld2
description = "A Python implementation of the model World2."
setup(
name='pyworld2',
version=pyworld2.__version__,
packages=["pyworld2"],
description=description,
long_description=description,
author="Charles Vanwynsberghe",
url='http://github.com/cvanwynsberghe/pyworld2',
download_url="https://github.com/cvanwynsberghe/pyworld2/archive/v1.0.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 :: MIT License",
],
license="MIT",
)