-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
58 lines (54 loc) · 2.24 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
50
51
52
53
54
55
56
57
58
from setuptools import setup
with open('README.md', "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="NEMtropy",
author="Nicolo' Vallarano, Emiliano Marchese, Matteo Bruno",
author_email='nico.vallarano@gmail.com, emilianomarcheserc@gmail.com,'
' matteobruno180@gmail.com',
packages=["NEMtropy"],
package_dir={'': 'src'},
version="3.0.3",
description="NEMtropy is a Maximum-Entropy toolbox for networks, it"
" provides the user with a state of the art solver for a"
" range variety of Maximum Entropy Networks models derived"
" from the ERGM family. This module allows you to solve the"
" desired model and generate a number of randomized graphs"
" from the original one: the so-called graphs ensemble.",
long_description=long_description,
long_description_content_type="text/markdown",
license="GNU General Public License v3",
url="https://github.com/nicoloval/NEMtropy/",
download_url="https://github.com/nicoloval/NEMtropy/archive/refs/tags/v2.1.1.zip",
keywords=['Network reconstruction', 'Networks Null Models',
'Maximum Entropy Methods'],
classifiers=[
'License :: OSI Approved :: GNU Library or Lesser General'
' Public License (LGPL)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
install_requires=[
"numpy>=1.17",
"scipy>=1.4",
"networkx>=2.4",
"powerlaw>=1.4",
"tqdm>=4.5",
"bicm>=3.2.0"
],
extras_require={
"dev": [
"pytest>=6.0.1",
"flake8>=3.8.3",
"wheel>=0.35.1",
"check-manifest>=0.44",
"setuptools>=47.1.0",
"twine>=3.2.0",
"tox>=3.20.1",
"powerlaw>=1.4.4",
],
},
)