-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (44 loc) · 1.36 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
45
46
47
48
49
import glob
from os import path
from setuptools import setup, find_packages
version = '0.4.0'
README = path.join(
path.dirname(__file__),
'README.rst')
long_description = open(README).read() + "\n\n"
GENERATION_MODELS_DIR = 'pynetsym/generation_models'
# def find_generation_models():
# scripts = glob.glob(path.join(GENERATION_MODELS_DIR, '*.py'))
# scripts.remove(path.join(GENERATION_MODELS_DIR, '__init__.py'))
# return scripts
setup(
name='pynetsym', version=version,
description="Comprehensive package for social networks simulation.",
long_description=long_description,
classifiers=[
"Topic :: Scientific/Engineering :: Mathematics",
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords="sna sn",
author="Enrico Franchi",
author_email="enrico.franchi@gmail.com",
url="https://github.com/rik0/pynetsym",
packages=find_packages(
exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
# scripts=find_generation_models(),
install_requires=[
'pytest',
'gevent',
'networkx',
'jsonpickle',
'traits',
'pymongo',
'numpy',
'scipy',
'h5py',
],
)