-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
34 lines (31 loc) · 1.19 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
from setuptools import find_packages, setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="django-octicons-v10",
packages=find_packages(exclude=("tests",)),
package_data={"octicons_v10": ["templatetags/octicons.json", "templatetags/keywords.json"]},
version="4.1.0",
license="MIT",
description="Django templatetags for GitHub Octicons v10.0.0+.",
long_description=long_description,
long_description_content_type="text/markdown",
author='Jay Newey',
author_email="[email protected]",
url="https://github.com/jaynewey/django-octicons-v10",
download_url="https://github.com/jaynewey/django-octicons-v10/archive/v4.1.0.tar.gz",
keywords=["octicons", "django", "templatetags"],
install_requires=[
"Django>=2.0.0,<4.0.0",
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Framework :: Django",
],
)