forked from bwindsor/typed-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (35 loc) · 1.39 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
from pathlib import Path
from setuptools import setup
from typedconfig.__version__ import __version__
# The text of the README file
readme_text = Path(__file__).with_name("README.md").read_text()
setup(
name='typed-config',
version=__version__,
description='Typed, extensible, dependency free configuration reader for Python projects for multiple config sources and working well in IDEs for great autocomplete performance.',
long_description=readme_text,
long_description_content_type='text/markdown',
url='https://github.com/bwindsor/typed-config',
author='Ben Windsor',
author_email='',
python_requires='>=3.6.0',
license='MIT',
classifiers=[
'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',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development',
'Typing :: Typed',
],
packages=['typedconfig'],
package_data={'typedconfig': ['py.typed']},
install_requires=['typing-extensions >= 3.10.0; python_version < "3.8.0"'],
entry_points={}
)