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
|
import os.path
from setuptools import setup
about = {}
version_path = os.path.join(os.path.dirname(__file__), 'staticconf', 'version.py')
with open(version_path) as f:
exec(f.read(), about)
setup(
name="PyStaticConfiguration",
version=about['version'],
provides=["staticconf"],
author="Daniel Nephin",
author_email="dnephin@gmail.com",
url="https://github.com/dnephin/PyStaticConfiguration",
description='A python library for loading static configuration',
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
],
python_requires=">=3.6",
install_requires=[
'typing-extensions',
],
extras_require={
'yaml': ['pyyaml'],
},
packages=['staticconf'],
package_data={
"staticconf": ["py.typed"],
},
license='APACHE20',
)
|