-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
41 lines (38 loc) · 1.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
"""
Basic set up file
"""
from setuptools import setup, find_packages
with open("README.rst", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="battlesim",
version="0.3.7",
description="A python package for simulating battles and visualizing them in animation",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/gregparkes/battlesim",
author="Gregory Parkes",
author_email="[email protected]",
license="GPL-3.0",
packages=find_packages(exclude=["tests", ".gitignore"]),
zip_safe=False,
python_requires=">=3.8",
install_requires=[
"numpy>=1.11.0",
"pandas>=0.25.1",
"matplotlib>=3.1.1",
"numba>=0.45",
],
classifiers=[
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Framework :: IPython",
"Framework :: Jupyter",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
],
)