
| Current Path : /var/www/web-klick.de/dsh/order_model/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/web-klick.de/dsh/order_model/setup.py |
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import io
import os
from setuptools import find_packages, setup
# Package meta-data.
NAME = 'ordermodel'
DESCRIPTION = 'Canonical tape-out data model.'
URL = 'http://amuxgit01.amtc-dresden.com/tpi_dr_fe/order_model'
EMAIL = 'eu-fedev-request@photomask.com'
AUTHOR = 'TPI_DR_FE - Patrick Thomanek'
REQUIRES_PYTHON = '>=3.8'
VERSION = '0.5.15'
REQUIRED = ['pydantic>=1.7.3']
EXTRAS = {}
here = os.path.abspath(os.path.dirname(__file__))
# Import the README and use it as the long-description.
# Note: this will only work if 'README.md' is present in your MANIFEST.in file!
try:
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = '\n' + f.read()
except FileNotFoundError:
long_description = DESCRIPTION
# Load the package's __version__.py module as a dictionary.
about = {}
if not VERSION:
project_slug = NAME.lower().replace("-", "_").replace(" ", "_")
with open(os.path.join(here, project_slug, '__version__.py')) as f:
exec(f.read(), about)
else:
about['__version__'] = VERSION
setup(
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,
packages=find_packages(
exclude=["tests", "*.tests", "*.tests.*", "tests.*"]
),
install_requires=REQUIRED,
extras_require=EXTRAS,
include_package_data=True,
license='Proprietary',
classifiers=[
'License :: Other/Proprietary License'
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
'Operating System :: Microsoft :: Windows :: Windows 10',
'Operating System :: POSIX :: Linux',
],
)