-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 901 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 901 Bytes
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
from setuptools import setup, find_packages
setup(
name = "ILMpy",
version = "0.1",
packages = find_packages(),
scripts = ['bin/ilm'],
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires = ['docutils>=0.3','pandas','ply','distance','sympy'],
package_data = {
# If any package contains *.txt or *.rst files, include them:
'': ['*.txt', '*.rst', '*.pdf'],
# And include any *.msg files found in the 'hello' package, too:
'hello': ['*.msg'],
},
# metadata for upload to PyPI
author = "David H. Ardell",
author_email = "dardell@ucmerced.edu",
description = 'Iterated Learning Models in Python',
license = "Artistic 2.0",
keywords = "",
url = "http://pypi.python.org/pypi/ILMpy/",
long_description=open('README.txt').read(),
)