little-boxes/setup.py

79 wiersze
1.9 KiB
Python
Czysty Zwykły widok Historia

2018-06-11 20:50:02 +00:00
#!/usr/bin/env python
2019-02-24 14:36:06 +00:00
from distutils.core import setup
2018-06-12 17:57:40 +00:00
import io
import os
2018-06-15 22:27:49 +00:00
2018-06-11 20:50:02 +00:00
from setuptools import find_packages
2019-02-24 14:36:06 +00:00
2018-06-12 17:57:40 +00:00
here = os.path.abspath(os.path.dirname(__file__))
# Package meta-data.
NAME = "little_boxes"
DESCRIPTION = (
"Tiny ActivityPub framework written in Python, both database and server agnostic."
)
URL = "https://github.com/tsileo/little-boxes"
EMAIL = "t@a4.io"
AUTHOR = "Thomas Sileo"
REQUIRES_PYTHON = ">=3.6.0"
VERSION = None
2018-07-29 18:56:57 +00:00
REQUIRED = [
"requests",
"markdown",
"bleach",
"pyld",
"pycryptodome",
"html2text",
"mdx_linkify",
2019-02-24 14:36:06 +00:00
"regex",
2018-07-29 18:56:57 +00:00
]
2018-06-12 17:57:40 +00:00
DEPENDENCY_LINKS = []
# Load the package's __version__.py module as a dictionary.
about = {}
if not VERSION:
with open(os.path.join(here, NAME, "__version__.py")) as f:
exec(f.read(), about)
else:
about["__version__"] = VERSION
# Import the README and use it as the long-description.
with io.open(os.path.join(here, "README.md"), encoding="utf-8") as f:
long_description = "\n" + f.read()
2018-06-11 20:50:02 +00:00
setup(
2018-06-12 17:57:40 +00:00
name=NAME,
version=about["__version__"],
description=DESCRIPTION,
long_description=long_description,
long_description_content_type="text/markdown",
author=AUTHOR,
author_email=EMAIL,
python_requires=REQUIRES_PYTHON,
url=URL,
2018-06-11 20:50:02 +00:00
packages=find_packages(),
2018-06-12 17:57:40 +00:00
install_requires=REQUIRED,
dependency_links=DEPENDENCY_LINKS,
license="ISC",
classifiers=[
# Trove classifiers
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: ISC License (ISCL)",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
2018-07-01 10:12:14 +00:00
"Programming Language :: Python :: 3.7",
2018-06-12 17:57:40 +00:00
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
2018-06-11 20:50:02 +00:00
)