-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 1.3 KB
/
setup.py
File metadata and controls
35 lines (33 loc) · 1.3 KB
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
from setuptools import setup, find_packages
import os
version = '0.3.2'
README = os.path.join(os.path.dirname(__file__), 'README.txt')
long_description = open(README).read() + 'nn'
setup(
name='ComplexSystems',
packages=find_packages(),
version=version,
description='Toolbox for Complex Sytems including : Public Good Game, Human Based Mobility Models',
long_description=long_description,
author='Vincent Gauthier',
author_email='vgauthier@luxbulb.org',
url='http://bitbucket.org/vgauthier/complex-systems/',
keywords=["complex systems", "Levy flight", "human mobility"],
requires=['numpy','pylab'],
license='MIT',
tests_require=['nose'],
test_suite = 'nose.collector',
platforms=['any'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Mathematics',
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research'
],
install_requires=[
"numpy >= 1.4.0"
]
)