-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
64 lines (59 loc) · 1.86 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/python3
# -*- coding: utf-8 -*-
"""Setup script."""
from setuptools import find_packages, setup
with open('README.md') as readme_file:
readme = readme_file.read()
setup(
name='pint-models',
version='0.0.1',
description='Contains a set of models and utilites for SUSE Pint Server.',
long_description=readme,
long_description_content_type="text/markdown",
author='SUSE',
author_email='public-cloud-dev@susecloud.net',
url='https://github.com/SUSE-Enceladus/public-cloud-info-models',
packages=find_packages(),
package_dir={
'pint_models': 'pint_models'
},
include_package_data=True,
python_requires='>=3.6',
install_requires=[
'SQLAlchemy'
],
extras_require={
'dev': [
'bumpversion',
'coverage',
'flake8',
'pytest-cov'
],
'test': [
'coverage',
'flake8',
'pytest-cov'
],
},
license='Apache-2.0',
zip_safe=False,
keywords='pint_models pint-models',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
],
)