lutin/setup.py

50 lines
1.5 KiB
Python
Raw Normal View History

#!/usr/bin/python
# -*- coding: utf-8 -*-
##
## @author Edouard DUPIN
##
## @copyright 2012, Edouard DUPIN, all right reserved
##
## @license MPL v2.0 (see license file)
##
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',
2017-03-30 21:56:15 +02:00
version='2.3.0',
2015-10-21 21:56:53 +02:00
description='Lutin generic builder (might replace makefile, CMake ...)',
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='MPL-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 :: 5 - Production/Stable',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
2015-05-08 15:23:56 +02:00
'Programming Language :: Python',
'Topic :: Software Development :: Compilers',
],
keywords='builder c++ c android ios macos makefile cmake',
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,
zip_safe=False)
2015-05-11 21:28:04 +02:00
2015-10-20 23:39:12 +02:00
#To developp: sudo ./setup.py install
# sudo ./setup.py develop
2015-05-11 21:28:04 +02:00
#TO register all in pip: ./setup.py register sdist upload
2017-03-21 22:32:11 +01:00
#pylint test: pylint2 --rcfile=pylintRcFile.txt lutin/module.py
2015-05-11 21:28:04 +02:00