-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (37 loc) · 1.11 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
"""The module that implements PyPI settings.
"""
from setuptools import find_packages, setup
from stubdoc import __version__
_DESCRIPTION: str = (
'stubdoc is a Python library that append docstring to stub files.'
'\nNotes: currently developing.'
)
_LONG_DESCRIPTION: str = (
'stubdoc is a Python library that append docstring to stub files.'
' For more details, please see Github repository:'
' https://github.com/simon-ritchie/stubdoc/tree/main'
)
setup(
name='stubdoc',
version=__version__,
url='https://github.com/simon-ritchie/stubdoc/tree/main',
maintainer='simon-ritchie',
maintainer_email='',
description=_DESCRIPTION,
long_description=_LONG_DESCRIPTION,
packages=find_packages(
exclude=('tests', 'samples'),
),
install_requires=[],
include_package_data=True,
license='MIT',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
],
entry_points={
'console_scripts': [
'stubdoc = stubdoc.cli:main',
],
}
)