island/setup.py

56 lines
1.5 KiB
Python
Raw Normal View History

2017-01-05 21:31:21 +01:00
#!/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
def readme():
with open('README.rst') as f:
return f.read()
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
setup(name='island',
2019-08-02 00:07:42 +02:00
version='0.9.0',
description='island generic source manager (like repo in simple mode)',
2017-01-05 21:31:21 +01:00
long_description=readme(),
url='http://github.com/HeeroYui/island',
2017-01-05 21:31:21 +01:00
author='Edouard DUPIN',
author_email='yui.heero@gmail.com',
license='MPL-2',
packages=['island',
'island/actions'],
2017-01-05 21:31:21 +01:00
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Programming Language :: Python',
'Topic :: Software Development :: Build Tools'
],
keywords='source manager repo qisrc lutin',
scripts=['bin/island'],
2017-01-05 21:31:21 +01:00
# Does not work on MacOs
#data_file=[
# ('/etc/bash_completion.d', ['bash-autocompletion/lutin']),
#],
2017-01-06 21:24:42 +01:00
install_requires=[
'lxml',
2019-04-26 22:40:08 +02:00
'realog',
2019-04-26 23:05:14 +02:00
'death',
2017-01-06 21:24:42 +01:00
],
2017-01-05 21:31:21 +01:00
include_package_data = True,
zip_safe=False)
#To developp: sudo ./setup.py install
# sudo ./setup.py develop
2019-04-15 22:42:41 +02:00
#TO register all in pip: use external tools:
# pip install twine
# # create the archive
# ./setup.py sdist
# twine upload dist/*
2017-01-05 21:31:21 +01:00