-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
40 lines (36 loc) · 1.13 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
ROOT = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(ROOT, "README.rst")) as f:
README = f.read()
setup(
name="django-badgify",
version="0.6.0",
description="A reusable application to create your own badge engine using Django",
long_description=README,
author="Gilles Fabio",
author_email="[email protected]",
url="http://github.com/ulule/django-badgify",
packages=find_packages(),
zip_safe=False,
include_package_data=True,
install_requires=[
"Pillow",
"pytz",
"six",
],
tests_require=["coverage", "RandomWords"],
classifiers=[
"Environment :: Web Environment",
"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.8",
"Programming Language :: Python :: 3.9",
"Topic :: Utilities",
],
)