-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
29 lines (26 loc) · 840 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
29
from setuptools import setup
namespace = {}
with open("randomnwn/version.py", "r") as f:
exec(f.read(), namespace)
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="randomnwn",
version=namespace["__version__"],
description="Modelling and analyzing random nanowire networks in Python.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/marcus-k/Random-NWNs",
author="Marcus Kasdorf",
author_email="[email protected]",
license="GNU General Public License v3",
packages=["randomnwn"],
python_requires=">=3.10",
install_requires=[
"matplotlib>=3.8.4",
"networkx>=3.1",
"numpy>=1.26.4",
"scipy>=1.13.0",
"Shapely>=2.0.4,<3",
],
)