-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (35 loc) · 1.21 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
from setuptools import setup
# setup for gradls
setup(
name="smokesim",
version="0.0.21",
packages=["smokesim"],
install_requires=[
"numpy",
"pygame==2.5.2",
"pygame_gui==0.6.9",
# "mediapipe==0.10.14",
"black==24.4.2",
"pydantic==2.7.1",
"opencv-python<4.10.0",
],
author="Ramkrishna Acharya(QViper)",
author_email="[email protected]",
description="A package for doing smoke simulation.",
long_description=open("Readme.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/q-viper/SmokeSim",
keywords=["smoke", "simulation"],
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
],
download_url="https://github.com/q-viper/SmokeSim/archive/refs/tags/v0.0.2.tar.gz",
homepage="https://q-viper.github.io/SmokeSim/",
)