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-10-16 23:36:10 +02:00
|
|
|
version='0.7.3',
|
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-06-12 21:35:28 +02:00
|
|
|
packages=['lutin',
|
|
|
|
'lutin/z_builder',
|
|
|
|
'lutin/z_system',
|
|
|
|
'lutin/z_target'],
|
2015-05-08 15:23:56 +02:00
|
|
|
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-10-15 21:24:20 +02:00
|
|
|
# Does not work on MacOs
|
|
|
|
#data_file=[
|
|
|
|
# ('/etc/bash_completion.d', ['bash-autocompletion/lutin']),
|
|
|
|
#],
|
2015-06-12 21:35:28 +02:00
|
|
|
include_package_data = True,
|
2015-05-08 13:13:50 +02:00
|
|
|
zip_safe=False)
|
2015-05-11 21:28:04 +02:00
|
|
|
|
|
|
|
#To developp: ./setup.py install/develop
|
|
|
|
#TO register all in pip: ./setup.py register sdist upload
|
|
|
|
|