-
Notifications
You must be signed in to change notification settings - Fork 38
/
setup.py
36 lines (33 loc) · 1.03 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
from lice import __version__
from setuptools import setup, find_packages
import sys
long_description = open('README.rst').read()
extra_kwargs = {}
if sys.version_info >= (3,):
extra_kwargs['setup_requires'] = ['setuptools']
setup(
name="lice",
version=__version__,
author="Jeremy Carbaugh",
author_email="[email protected]",
url='https://github.com/licenses/lice',
description='Generate a license file for a project',
long_description=long_description,
license='BSD',
packages=find_packages(),
package_data={'lice': ['*.txt']},
include_package_data=True,
entry_points={
'console_scripts': ['lice = lice:main']},
platforms=['any'],
test_suite='lice.tests.collector',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
**extra_kwargs
)