-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 793 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 793 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
27
28
29
"""
A tool to automatically generate .gitignore file for your project
"""
from setuptools import find_packages, setup
from scripts import *
dependencies = ['click', 'glob2']
setup(
name='Goofy',
packages=find_packages(),
version='0.1.0',
url='https://github.com/yash2696/Goofy',
download_url='https://github.com/yash2696/Goofy/archive/0.1.0.tar.gz',
license='MIT',
author='Yash Agarwal',
author_email='yashagarwaljpr@gmail.com',
description='A tool to automatically generate .gitignore file for your project',
long_description=__doc__,
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=dependencies,
entry_points={
'console_scripts': [
'goofy = scripts.cli:main',
],
},
)