-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
44 lines (38 loc) · 1.2 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
38
39
40
41
42
43
44
"""Pyshgp setup file."""
import os
from setuptools import setup, find_packages
exec(open("pyshgp/__init__.py").read())
def read(fname):
"""Read a file to a string."""
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="pyshgp",
version=__version__,
description="Push Genetic Programming in Python",
long_description=read('README.md'),
long_description_content_type="text/markdown",
keywords=["push gp", "genetic programming", "pushgp", "gp", "push"],
author="Eddie Pantridge",
author_email="erp12@hampshire.edu",
license="MIT",
url="https://github.com/erp12/pyshgp",
packages=find_packages(
exclude=('examples', 'examples.*', 'tests', 'tests.*', 'docs', 'docs_source')
),
classifiers=[
"Development Status :: 4 - Beta",
'Programming Language :: Python :: 3',
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
install_requires=[
"numpy>=1.12.0",
"scipy>=0.18.0",
"pandas>=0.23.4",
"pyrsistent>=0.16.0",
],
tests_require=[
"pytest"
],
)