forked from mherrmann/gitignore_parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (34 loc) · 1.3 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
"""A spec-compliant gitignore parser for Python 3.5+
See:
https://github.com/mherrmann/gitignore_parser
"""
from setuptools import setup
description = 'A spec-compliant gitignore parser for Python 3.5+'
setup(
name='gitignore_parser',
version='0.1.2',
install_requires=["pathlib; python_version < '3.0'"],
description=description,
long_description=
description + '\n\nhttps://github.com/mherrmann/gitignore_parser',
author='Michael Herrmann',
author_email='[email protected]',
url='https://github.com/mherrmann/gitignore_parser',
py_modules=['gitignore_parser'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
],
license='MIT',
keywords='gitignore',
platforms=['MacOS', 'Windows', 'Debian', 'Fedora', 'CentOS']
)