2015-05-08 13:13:50 +02:00
|
|
|
#!/usr/bin/python
|
|
|
|
from setuptools import setup
|
|
|
|
|
2015-05-08 15:23:56 +02:00
|
|
|
def readme():
|
|
|
|
with open('README.rst') as f:
|
|
|
|
return f.read()
|
|
|
|
|
|
|
|
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
|
2015-05-08 13:13:50 +02:00
|
|
|
setup(name='lutin',
|
2015-05-08 15:23:56 +02:00
|
|
|
version='0.5.2',
|
2015-05-08 13:13:50 +02:00
|
|
|
description='Lutin generic builder',
|
2015-05-08 15:23:56 +02:00
|
|
|
long_description=readme(),
|
2015-05-08 13:13:50 +02:00
|
|
|
url='http://github.com/HeeroYui/lutin',
|
|
|
|
author='Edouard DUPIN',
|
|
|
|
author_email='yui.heero@gmail.com',
|
|
|
|
license='APACHE-2',
|
2015-05-08 15:23:56 +02:00
|
|
|
packages=['lutin',
|
|
|
|
'lutin/builder',
|
|
|
|
'lutin/system',
|
|
|
|
'lutin/target'
|
|
|
|
],
|
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 3 - Alpha',
|
|
|
|
'License :: OSI Approved :: Apache Software License',
|
|
|
|
'Programming Language :: Python',
|
|
|
|
'Topic :: Software Development :: Compilers',
|
|
|
|
],
|
|
|
|
keywords='builder c++ c android ios macos makefile cmake',
|
2015-05-08 13:13:50 +02:00
|
|
|
scripts=['bin/lutin'],
|
2015-05-08 15:23:56 +02:00
|
|
|
include_package_data = True,
|
2015-05-08 13:13:50 +02:00
|
|
|
zip_safe=False)
|