-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (34 loc) · 1.01 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
from setuptools import setup
setup(
name='froggy',
version='0.1.1',
description='Froggy friend!',
url='',
author='2sleepy4u',
author_email='riccardo.zancan00@gmail.com',
license='BSD 2-clause',
packages=['froggy'],
package_data={
'froggy': ['images/frog.png'],
},
install_requires=[ "PyQt5"
, "randfacts"
, "ollama"
],
entry_points={
'console_scripts': [
'froggy=froggy.main:main', # Adjust as needed
],
},
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)