forked from dadadel/pyment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·42 lines (36 loc) · 1.32 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
#!/usr/bin/env python
from setuptools import setup
from os import path
import pyment
curr_dir = path.abspath(path.dirname(__file__))
with open(path.join(curr_dir, "README.rst")) as f:
long_desc = f.read()
setup(name='Pyment',
version=pyment.__version__,
description='Generate/convert automatically the docstrings from code signature',
long_description=long_desc,
long_description_content_type="text/x-rst",
author='A. Daouzli',
author_email='[email protected]',
license='GPLv3',
keywords="pyment docstring numpydoc googledoc restructuredtext epydoc epytext javadoc development generate auto",
platforms=['any'],
classifiers=[
'Intended Audience :: Developers',
'Topic :: Documentation',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
url='https://github.com/dadadel/pyment',
packages=['pyment'],
test_suite='tests.test_all',
entry_points={
'console_scripts': [
'pyment = pyment.pymentapp:main'
]
},
)