forked from jeanralphaviles/comment_parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 785 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 785 Bytes
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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(
name='comment_parser',
version='1.0.3',
description='Parse comments from various source files.',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Documentation',
'License :: OSI Approved :: MIT License'
],
url='http://github.com/jeanralphaviles/comment_parser',
author='Jean-Ralph Aviles',
author_email='jeanralph.aviles+pypi@gmail.com',
license='MIT',
packages=['comment_parser', 'comment_parser.parsers'],
install_requires=['python-magic>=0.4'],
test_suite='nose.collector',
tests_require=['nose'],
zip_safe=False)