-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 1.1 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
from setuptools import setup, find_packages
import versioneer
from pathlib import Path
here = Path(__file__).resolve().parent
long_description = here.joinpath('README.md').read_text()
setup(
name='atdict',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Attribute-access ordered dictionary',
long_description=long_description,
long_description_content_type='text/markdown',
author='Tai Sakuma',
author_email='[email protected]',
url='https://github.com/alphatwirl/atdict',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
packages=find_packages(exclude=['docs', 'tests']),
extras_require={
'tests': [
'pytest>=6.2',
'pytest-cov>=2.11'
]
}
)