forked from justbuchanan/fontawesome-python
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 761 Bytes
/
setup.py
File metadata and controls
26 lines (22 loc) · 761 Bytes
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
from setuptools import find_packages, setup
import nerdfont
# Read the contents of your README.md file
with open("readme.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
REL_VERSION = "1"
setup(
name="nerdfont",
version=nerdfont.__version__ + ".post" + REL_VERSION,
description="The Nerd Font icon set for python",
long_description=long_description,
long_description_content_type="text/markdown",
license="Code: Apache License, Version 2.0, Icons: Nerd Fonts Licensing",
author="Larspolo",
maintainer="Larspolo",
packages=find_packages(),
url="https://github.com/Larspolo/nerdfont-python",
classifiers=[
"Environment :: Console",
"Programming Language :: Python :: 3",
],
)