-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (35 loc) · 1.01 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
from setuptools import find_packages, setup
from numdoclint import __version__ as version
description: str = (
'Numdoc Lint provides features such as '
'NumPy style docstring code checking.'
)
long_description: str = (
'Numdoc Lint provides features such as NumPy style '
'docstring code checking.\n\nPlease see github for more detail.'
'\nhttps://github.com/simon-ritchie/numdoclint'
)
setup(
name='numdoclint',
version=version,
url='https://github.com/simon-ritchie/numdoclint',
author='simon-ritchie',
author_email='',
maintainer='simon-ritchie',
maintainer_email='',
description=description,
long_description=long_description,
packages=find_packages(),
install_requires=['six'],
include_package_data=True,
license='MIT',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
],
entry_points={
'console_scripts': [
'numdoclint = numdoclint.cli:main',
],
},
)