forked from Aleksi44/wagtailsvg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·42 lines (38 loc) · 1.16 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
#!/usr/bin/env python
import os
from setuptools import find_packages, setup
import json
PROJECT_DIR = os.path.dirname(__file__)
with open("README.rst", "r") as fh:
long_description = fh.read()
with open('./package.json') as package:
data = json.load(package)
version = data['version']
setup(
name='wagtailsvg',
version=version,
url='https://github.com/Aleksi44/wagtailsvg',
author="Alexis Le Baron",
author_email="alexis@stationspatiale.com",
description="Wagtail SVG",
long_description=long_description,
keywords="wagtail svg",
license='GPL-3.0',
install_requires=[
'wagtail-generic-chooser==0.5.1'
],
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'
]
)