forked from comments-ink/django-comments-ink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (45 loc) · 1.58 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
from pathlib import Path
from setuptools import find_packages, setup
BASE_DIR = Path(__file__).resolve().parent
readme = ""
with open(BASE_DIR / "README.md", "r") as readme_file:
readme = readme_file.read()
requirements = []
with open(BASE_DIR / "requirements.in", "r") as req_file:
for item in req_file:
requirements.append(item)
setup(
name="django-comments-ink",
version="0.3.0",
packages=find_packages(),
include_package_data=True,
license="MIT",
description=(
"Django pluggable commenting app with comment threads, follow-up "
"notifications, mail confirmation, comment reactions and votes, and "
"comment moderation. It supersedes django-comments-xtd."
),
long_description=readme,
long_description_content_type="text/x-rst",
author="Daniela Rus Morales",
author_email="[email protected]",
maintainer="Daniela Rus Morales",
maintainer_email="[email protected]",
url="https://github.com/comments-ink/django-comments-ink",
install_requires=requirements,
setup_requires=["wheel"],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Framework :: Django",
"Natural Language :: English",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: News/Diary",
],
test_suite="dummy",
zip_safe=True,
)