lutin/setup.py

32 lines
953 B
Python
Raw Normal View History

#!/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
setup(name='lutin',
2015-05-08 15:23:56 +02:00
version='0.5.2',
description='Lutin generic builder',
2015-05-08 15:23:56 +02:00
long_description=readme(),
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',
scripts=['bin/lutin'],
2015-05-08 15:23:56 +02:00
include_package_data = True,
zip_safe=False)