-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
28 lines (25 loc) · 895 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
27
28
import setuptools
from pathlib import Path
with open('requirements.txt') as f:
required = f.read().splitlines()
this_directory = Path(__file__).parent
long_description = (this_directory / "description_pypi.md").read_text()
setuptools.setup(
name="cosima",
version="0.3.4",
author="Cosima Team",
author_email="emilie.frost@offis.de",
description="COmmunication SIMulation with Agents",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://gitlab.com/mosaik/examples/cosima.git",
packages=setuptools.find_packages(),
install_requires=required,
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
],
python_requires='>=3.8',
include_package_data=True,
)