3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-01 09:19:23 +01:00
PyLink/setup.py

110 lines
3.3 KiB
Python
Raw Normal View History

"""Setup module for PyLink IRC Services."""
2019-07-15 00:12:29 +02:00
import subprocess
import sys
2019-07-15 00:12:29 +02:00
from codecs import open
if sys.version_info < (3, 4):
raise RuntimeError("PyLink requires Python 3.4 or higher.")
try:
from setuptools import setup, find_packages
except ImportError:
raise ImportError("Please install Setuptools and try again.")
with open('VERSION', encoding='utf-8') as f:
version = f.read().strip()
2017-06-06 21:54:48 +02:00
# Try to fetch the current commit hash from Git.
try:
real_version = subprocess.check_output(['git', 'describe', '--tags']).decode('utf-8').strip()
except Exception as e:
print('WARNING: Failed to get Git version from "git describe --tags": %s: %s' % (type(e).__name__, e))
print("If you're installing from PyPI or a tarball, ignore the above message.")
real_version = version + '-nogit'
# Write the version to disk.
with open('__init__.py', 'w') as f:
f.write('# Automatically generated by setup.py\n')
f.write('__version__ = %r\n' % version)
f.write('real_version = %r\n' % real_version)
try:
if sys.version_info >= (3, 5):
with open('README.md') as f:
long_description = f.read()
else:
# Work around "TypeError: a bytes-like object is required, not 'str'" errors on Python 3.4
# when the README has Unicode characters (error in distutils.util.rfc822_escape)
import codecs
long_description = codecs.open('README.md', encoding='utf-8').read()
except OSError:
print('WARNING: Failed to read readme, skipping writing long_description')
long_description = None
setup(
name='pylinkirc',
version=version,
description='PyLink IRC Services',
long_description=long_description,
long_description_content_type='text/markdown',
2018-07-08 21:53:59 +02:00
url='https://github.com/jlu5/PyLink',
# Author details
author='James Lu',
2017-06-06 21:54:48 +02:00
author_email='james@overdrivenetworks.com',
# License
license='MPL 2.0',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Topic :: Communications :: Chat :: Internet Relay Chat',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
2016-08-04 09:27:50 +02:00
'Environment :: Console',
2016-08-04 09:27:50 +02:00
'Operating System :: OS Independent',
'Operating System :: POSIX',
'Natural Language :: English',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
2016-08-04 09:27:50 +02:00
keywords='IRC services relay',
install_requires=['pyyaml', 'cachetools'],
extras_require={
'password-hashing': ['passlib>=1.7.0'],
'cron-support': ['psutil'],
'relay-unicode': ['unidecode'],
},
# Folders (packages of code)
packages=['pylinkirc', 'pylinkirc.protocols', 'pylinkirc.plugins', 'pylinkirc.coremods'],
# Data files
package_data={
'': ['example-conf.yml', 'VERSION', 'README.md'],
},
package_dir = {'pylinkirc': '.'},
# Executable scripts
scripts=["pylink-mkpasswd"],
entry_points = {
'console_scripts': ['pylink=pylinkirc.launcher:main'],
}
)