-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (27 loc) · 1.06 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
# # # # # # # # # # # # # # # # # # # #
# Pape (a Python package)
# Copyright 2020 Carter Pape
#
# See file LICENSE for licensing terms.
# # # # # # # # # # # # # # # # # # # #
import setuptools
with open("README.md", "r", encoding="utf8") as readme_file:
long_description = readme_file.read()
setuptools.setup(
name = "pape",
version = "0.0.12",
description = "A package for personalized Python add-ons, created by Carter Pape",
long_description = long_description,
long_description_content_type = "text/markdown",
author = "Carter Pape",
author_email = "[email protected]",
url = "https://github.com/CarterPape/pape-python-package",
packages = setuptools.find_packages(),
classifiers = [
"Programming Language :: Python",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Natural Language :: English",
],
python_requires = '>=3',
)