-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 745 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 745 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
26
from setuptools import setup
setup(
name='pygi',
version='1.0.3',
description='Command line interface using gitignore.io API',
url='http://github.com/onlined/pygi',
author='Ekin Dursun',
author_email='ekindursun@gmail.com',
license='GPLv3',
py_modules=['pygi'],
install_requires=[
'python-Levenshtein',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
entry_points = {
'console_scripts': ['gi=pygi:main'],
}
)