goarch_api/setup.py

33 lines
1.2 KiB
Python
Raw Normal View History

2018-08-23 07:08:50 -04:00
from setuptools import setup
setup(
name="goarch_api",
version="1.0.4",
2018-08-23 07:08:50 -04:00
author="Elliott Pardee",
author_email="me@vypr.xyz",
url="https://github.com/Oikonomia/goarch_api",
2018-08-23 11:23:01 -04:00
license="GPLv3",
2018-08-23 07:08:50 -04:00
packages=["goarch_api"],
description="A Python interface for the Greek Orthodox Archdiocese of America's Chapel API.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
include_package_data=True,
install_requires=["lxml", "requests"],
python_requires=">=3.6.5",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Religion",
2018-08-23 11:23:01 -04:00
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
2018-08-23 07:08:50 -04:00
"Natural Language :: Arabic",
"Natural Language :: English",
"Natural Language :: Greek",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Topic :: Internet",
"Topic :: Religion",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities"
]
)