forked from Aleksi44/wagtailyoast
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·40 lines (36 loc) · 1.13 KB
/
setup.py
File metadata and controls
executable file
·40 lines (36 loc) · 1.13 KB
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
#!/usr/bin/env python
import os
from setuptools import find_packages, setup
import json
PROJECT_DIR = os.path.dirname(__file__)
with open("README.md", "r") as fh:
long_description = fh.read()
with open("./package.json") as package:
data = json.load(package)
version = data["version"]
setup(
name="wagtailyoast",
version=version,
url="https://github.com/Aleksi44/wagtailyoast",
author="Alexis Le Baron",
author_email="alexis@stationspatiale.com",
description="Yoast For Wagtail",
long_description=long_description,
keywords="wagtail yoast seo",
license="GPL-3.0",
install_requires=[],
platforms=["linux"],
packages=find_packages(),
include_package_data=True,
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
"Topic :: Software Development",
],
)