-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (32 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
from setuptools import setup
def readme():
with open('README.md') as readme_file:
return readme_file.read()
setup(
name='comment_scanner',
version='0.3',
install_requires=[
'python-magic-bin>=0.4.14',
],
description='Parse comments from various source code files',
author='Faiz Alam',
author_email='mohdfaizalam53@gmail.com',
long_description=readme(),
long_description_content_type='text/markdown',
packages=['comment_scanner', 'comment_scanner.parsers'],
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Documentation',
'License :: OSI Approved :: MIT License',
"Operating System :: OS Independent"
],
url='https://github.com/FaizAlam/comment-scanner',
python_requires='>=3.7',
zip_safe=False,
entry_points={
"console_scripts": [
"comment_scanner = comment_scanner.comment_scanner:main",
],
},
)