-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 918 Bytes
/
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
from setuptools import find_packages, setup
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='NetTraceSim',
version='1.0.0',
description='Agent based covid simulations on networks.',
author='Felix Gigler, Martin Bicher',
author_email='felix.gigler@tuwien.ac.at',
url='https://github.com/figlerg/NetTraceSim.git',
install_requires=['numpy', 'matplotlib', 'networkx', 'scipy', 'ffmpeg-python','pandas','tqdm'],
long_description=long_description,
long_description_content_type="text/markdown",
license='BSD',
python_requires='>=3.8',
packages=find_packages(),
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.8',
],
)