mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-01 09:19:23 +01:00
a4e1f2a4ab
Also, change the suffix from -dirty to -nogit.
93 lines
2.7 KiB
Python
93 lines
2.7 KiB
Python
"""Setup module for PyLink IRC Services."""
|
|
|
|
import sys
|
|
|
|
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.")
|
|
from codecs import open
|
|
import subprocess
|
|
|
|
# Get version from Git tags.
|
|
with open('VERSION', encoding='utf-8') as f:
|
|
version = f.read().strip()
|
|
|
|
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)
|
|
|
|
# Convert Markdown to RST for PyPI
|
|
try:
|
|
import pypandoc
|
|
long_description = pypandoc.convert('README.md', 'rst')
|
|
except ImportError:
|
|
print('WARNING: PyPandoc not available; skipping writing long description.')
|
|
long_description = None
|
|
|
|
setup(
|
|
name='pylinkirc',
|
|
version=version,
|
|
|
|
description='PyLink IRC Services',
|
|
long_description=long_description,
|
|
|
|
url='https://github.com/GLolol/PyLink',
|
|
|
|
# Author details
|
|
author='James Lu',
|
|
author_email='GLolol@overdrivenetworks.com',
|
|
|
|
# Choose your license
|
|
license='MPL 2.0',
|
|
|
|
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
|
|
classifiers=[
|
|
'Development Status :: 4 - Beta',
|
|
|
|
'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)',
|
|
'Environment :: Console',
|
|
|
|
'Operating System :: OS Independent',
|
|
'Operating System :: POSIX',
|
|
|
|
'Natural Language :: English',
|
|
|
|
'Programming Language :: Python :: 3 :: Only',
|
|
'Programming Language :: Python :: 3.4',
|
|
'Programming Language :: Python :: 3.5',
|
|
],
|
|
|
|
keywords='IRC services relay',
|
|
install_requires=['pyyaml', 'ircmatch'],
|
|
|
|
# Folders (packages of code)
|
|
packages=['pylinkirc', 'pylinkirc.protocols', 'pylinkirc.plugins', 'pylinkirc.coremods'],
|
|
|
|
# Data files
|
|
package_data={
|
|
'': ['example-conf.yml', 'example-permissions.yml', 'VERSION', 'README.md'],
|
|
},
|
|
|
|
package_dir = {'pylinkirc': '.'},
|
|
|
|
# Executable scripts
|
|
scripts=["pylink"],
|
|
)
|