0
|
1 from setuptools import setup, find_packages
|
|
2
|
|
3 version = '0.0'
|
|
4
|
|
5 setup(name='licenser',
|
|
6 version=version,
|
|
7 description='adds licenses to python packages',
|
|
8 long_description="""\
|
|
9 """,
|
|
10 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
|
11 keywords='license',
|
|
12 author='Jeff Hammel',
|
|
13 author_email='jhammel@mozilla.com',
|
|
14 url='',
|
|
15 license='MPL',
|
|
16 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
|
|
17 include_package_data=True,
|
|
18 zip_safe=False,
|
|
19 install_requires=[
|
|
20 # -*- Extra requirements: -*-
|
|
21 ],
|
|
22 entry_points="""
|
|
23 # -*- Entry points: -*-
|
|
24 [console_scripts]
|
|
25 licenser = licenser.main:main
|
|
26
|
|
27 [licenser.license]
|
|
28 MPL = licenser.licenses:MPL
|
|
29 """,
|
|
30 )
|