You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
806 B
Python
36 lines
806 B
Python
import os
|
|
from distutils.command.build import build
|
|
|
|
from django.core import management
|
|
from setuptools import find_packages, setup
|
|
|
|
from pretix_poos import __version__
|
|
|
|
|
|
try:
|
|
with open(
|
|
os.path.join(os.path.dirname(__file__), "README.rst"), encoding="utf-8"
|
|
) as f:
|
|
long_description = f.read()
|
|
except Exception:
|
|
long_description = ""
|
|
|
|
|
|
setup(
|
|
name="pretix-poos",
|
|
version=__version__,
|
|
description="Short description",
|
|
long_description=long_description,
|
|
url="GitHub repository URL",
|
|
author="n0emis",
|
|
author_email="git@n0emis.eu",
|
|
license="Apache",
|
|
install_requires=[],
|
|
packages=find_packages(exclude=["tests", "tests.*"]),
|
|
include_package_data=True,
|
|
entry_points="""
|
|
[pretix.plugin]
|
|
pretix_poos=pretix_poos:PretixPluginMeta
|
|
""",
|
|
)
|