-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
34 lines (32 loc) · 1.08 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
import os
import os.path
from setuptools import setup
import fms.version
version = fms.version.TAG
setup(name='fms',
version = version,
description = 'A Financial Market Simulator',
author = 'Jean-Charles Bagneris',
author_email = '[email protected]',
url = 'http://github.com/jcbagneris/fms',
license = 'BSD',
long_description=open('README').read(),
packages = ['fms',
'fms.agents',
'fms.engines',
'fms.markets',
'fms.utils',
'fms.worlds',
],
scripts = ['startfms.py'],
install_requires = ['distribute','PyYAML',],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Topic :: Scientific/Engineering",
],
)