-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
62 lines (61 loc) · 1.98 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
from setuptools import setup, find_packages
setup(
name='django-polly',
version='0.0.5',
packages=find_packages(exclude=['tests*']),
package_data={
'django_polly': ['templates/**/*.html', 'static/**/*'],
},
include_package_data=True,
license='AGPL-3.0',
description='A Django app for building parrot configurations',
long_description=open('README.rst').read(),
long_description_content_type='text/x-rst',
url='https://github.com/pollystack/django-polly',
author='Pollystack Team',
author_email='[email protected]',
install_requires=[
'Django>=4.0',
'requests',
'tqdm',
'django-json-widget',
'djangorestframework',
'drf-spectacular',
'llama-cpp-python==0.2.87',
'channels[daphne]', # This will install both channels and daphne
'asgiref',
],
extras_require={
'dev': [
'pytest',
'pytest-django',
'pytest-cov',
'pytest-asyncio',
],
'test': [
'pytest',
'pytest-django',
'pytest-asyncio',
'pytest-cov',
'tox',
'coverage',
],
},
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 3.2',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
cmake_args=['-DGGML_BLAS=ON', '-DGGML_BLAS_VENDOR=OpenBLAS'],
)