-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (37 loc) · 1.27 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
#!/usr/bin/env python
import os
from typing import List
from setuptools import setup, find_namespace_packages
from django_ghost import __version__
long_description: str = open(
os.path.join(os.path.dirname(__file__), "README.md")
).read()
install_requires = ["django", "psycopg2", "requests", "PyJWT"]
python_requires = ">3.9"
setup(
name="django_ghost",
version=__version__,
packages=find_namespace_packages(exclude=["test", "tests", "config"]),
author="Leigh Johnson",
author_email="[email protected]",
description="Django Ghost is a Django app to sync a Django model with Ghost CMS newsletter subscribers",
long_description=long_description,
long_description_content_type="text/markdown",
license="BSD",
keywords="django ghost cms",
url="http://github.com/bitsy-ai/django-ghost",
classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
],
zip_safe=True,
install_requires=install_requires,
test_suite="pytest",
python_requires=python_requires,
include_package_data=True,
)