-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 909 Bytes
/
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
from distutils.core import setup
import os
DIRNAME = os.path.dirname(os.path.realpath(__file__))
VERSION = open(os.path.join(DIRNAME, 'VERSION'), 'r').read().strip()
setup(
name='circuits',
packages=['circuits'],
scripts=['scripts'],
version=VERSION,
author='George Lesica',
author_email='[email protected]',
url='https://github.com/um-tech-evolution/circuits',
description='A package for simulating technological evolution using logic circuits.',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Natural Language :: English',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Life',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Development Status :: 2 - Pre-Alpha'
]
)