-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (33 loc) · 1.09 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
import setuptools
# Use README for long description
with open('README.md', 'r') as readme_fp:
long_description = readme_fp.read()
# py_cui setup
setuptools.setup(
name='npdoc2md',
description='Scripts for autogenerating markdown docs from numpy-style docstrings.',
long_description=long_description,
long_description_content_type='text/markdown',
version='0.0.1',
author='Jakub Wlodek',
author_email='jwlodek.dev@gmail.com',
license='MIT',
url='https://github.com/jwlodek/npdoc2md',
py_modules=['npdoc2md', 'code2npdoc'],
entry_points={
'console_scripts': [
'npdoc2md = npdoc2md:main',
'code2npdoc = code2npdoc:main',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
keywords='markdown numpy docs autogenerate script',
python_requires='>=3.5',
)