-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 1.01 KB
/
setup.py
File metadata and controls
25 lines (22 loc) · 1.01 KB
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
#!usr/bin/env python
from setuptools import setup
from garnish.__init__ import __version__ as VERSION
setup(name='garnish',
license='MIT License',
version=VERSION,
description='Command-line tool for adding boilerplate licensing to your open-source projects. GPL, MIT, and BSD licenses supported.',
long_description=open('README.md', 'r').read(),
author='Jennifer Hamon',
author_email='jhamon@gmail.com',
maintainer='Jennifer Hamon',
install_requires=['setuptools'],
url='http://www.github.com/jhamon/garnish',
packages = ['garnish'],
package_data = {'garnish' : ['data/*']},
classifiers = ['Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Documentation'],
keywords = 'opensource gpl mit bsd licenses licensing',
entry_points = {'console_scripts': ['garnish=garnish.cli:main']}
)