-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 845 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 845 Bytes
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
from setuptools import find_namespace_packages, setup
from django_typesense import __version__
setup(
name="django_typesense",
author="Siege Software",
author_email="info@siege.ai",
version=__version__,
install_requires=[
"django",
"typesense",
],
setup_requires=["wheel"],
packages=find_namespace_packages(),
include_package_data=True,
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
license_files=("LICENSE",),
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Framework :: Django",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
)