-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 935 Bytes
/
setup.py
File metadata and controls
33 lines (31 loc) · 935 Bytes
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="BribeNet",
version="1.0.0",
author="Robert Murray",
author_email="R.Murray.1@warwick.ac.uk",
description="Simulation of networks of bribers and consumers",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/RobMurray98/CS407Implementation",
install_requires=[
'matplotlib==3.1.2',
'networkit==6.1.0',
'networkx==2.4',
'snap==0.5',
'cython==0.29.14',
'numpy==1.17.4',
'pandas==0.25.3',
'pytest==5.3.0',
'ipython==7.13.0',
'pillow==7.0.0',
'weightedstats==0.4.1'
],
package_data={'': ['*.png']},
include_package_data=True,
package_dir={'': 'src'},
packages=setuptools.find_packages(where='src'),
python_requires='>=3.7'
)