-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (43 loc) · 1.59 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from django_nlf import __version__ as dnlf_version
with open("README.md") as desc:
LONG_DESCRIPTION = desc.read()
with open("requirements.txt") as reqs:
REQUIREMENTS = reqs.readlines()
setup(
name="django-nlf",
version=dnlf_version,
description="Django Natural Language Filter package",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author="Hodossy, Szabolcs",
author_email="[email protected]",
maintainer="Hodossy, Szabolcs",
maintainer_email="[email protected]",
url="https://github.com/hodossy/django-nlf",
license="MIT",
platforms="any",
packages=find_packages(exclude=["tests*"]),
include_package_data=True,
keywords=["django", "natural-Language", "filtering"],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Typing :: Typed",
],
python_requires=">=3.7",
install_requires=REQUIREMENTS,
)