2019-02-22 21:40:30 +00:00
|
|
|
#!/usr/bin/env python3
|
2017-10-10 20:11:05 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2017-09-27 22:44:32 +00:00
|
|
|
|
2017-10-10 20:11:05 +00:00
|
|
|
# Note: To use the 'upload' functionality of this file, you must:
|
|
|
|
# $ pip install twine
|
|
|
|
|
|
|
|
import io
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
from shutil import rmtree
|
|
|
|
|
|
|
|
from setuptools import find_packages, setup, Command
|
|
|
|
|
|
|
|
# Package meta-data.
|
|
|
|
NAME = 'pinhook'
|
|
|
|
DESCRIPTION = 'a pluggable irc bot framework in python'
|
|
|
|
URL = 'https://github.com/archangelic/pinhook'
|
|
|
|
EMAIL = 'mhancock@archangelic.space'
|
|
|
|
AUTHOR = 'M. Hancock'
|
2019-03-01 00:35:22 +00:00
|
|
|
VERSION = None
|
2017-10-10 20:11:05 +00:00
|
|
|
|
|
|
|
# What packages are required for this module to be executed?
|
|
|
|
REQUIRED = [
|
2017-10-10 20:20:06 +00:00
|
|
|
'irc',
|
2018-10-10 17:25:03 +00:00
|
|
|
'enum34',
|
2019-08-27 19:15:48 +00:00
|
|
|
'click',
|
|
|
|
'marshmallow',
|
2017-10-10 20:11:05 +00:00
|
|
|
]
|
|
|
|
|
2019-08-28 19:20:43 +00:00
|
|
|
EXTRAS = {
|
|
|
|
'toml': ['toml'],
|
|
|
|
'yaml': ['pyyaml']
|
|
|
|
}
|
|
|
|
|
2017-10-10 20:11:05 +00:00
|
|
|
# The rest you shouldn't have to touch too much :)
|
|
|
|
# ------------------------------------------------
|
|
|
|
# Except, perhaps the License and Trove Classifiers!
|
|
|
|
# If you do change the License, remember to change the Trove Classifier for that!
|
|
|
|
|
|
|
|
here = os.path.abspath(os.path.dirname(__file__))
|
|
|
|
|
|
|
|
# Import the README and use it as the long-description.
|
|
|
|
# Note: this will only work if 'README.rst' is present in your MANIFEST.in file!
|
2019-08-30 20:39:46 +00:00
|
|
|
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
|
2017-10-10 20:11:05 +00:00
|
|
|
long_description = '\n' + f.read()
|
|
|
|
|
2019-03-01 00:35:22 +00:00
|
|
|
# Load the package's __version__.py module as a dictionary.
|
|
|
|
about = {}
|
|
|
|
if not VERSION:
|
|
|
|
project_slug = NAME.lower().replace("-", "_").replace(" ", "_")
|
|
|
|
with open(os.path.join(here, project_slug, '__version__.py')) as f:
|
|
|
|
exec(f.read(), about)
|
|
|
|
else:
|
|
|
|
about['__version__'] = VERSION
|
|
|
|
|
2017-10-10 20:11:05 +00:00
|
|
|
|
|
|
|
class UploadCommand(Command):
|
|
|
|
"""Support setup.py upload."""
|
|
|
|
|
|
|
|
description = 'Build and publish the package.'
|
|
|
|
user_options = []
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def status(s):
|
|
|
|
"""Prints things in bold."""
|
|
|
|
print('\033[1m{0}\033[0m'.format(s))
|
|
|
|
|
|
|
|
def initialize_options(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def finalize_options(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
try:
|
|
|
|
self.status('Removing previous builds…')
|
|
|
|
rmtree(os.path.join(here, 'dist'))
|
|
|
|
except OSError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
self.status('Building Source and Wheel (universal) distribution…')
|
|
|
|
os.system('{0} setup.py sdist bdist_wheel --universal'.format(sys.executable))
|
|
|
|
|
|
|
|
self.status('Uploading the package to PyPi via Twine…')
|
|
|
|
os.system('twine upload dist/*')
|
|
|
|
|
|
|
|
sys.exit()
|
|
|
|
|
|
|
|
|
|
|
|
# Where the magic happens:
|
2017-09-27 22:44:32 +00:00
|
|
|
setup(
|
2017-10-10 20:11:05 +00:00
|
|
|
name=NAME,
|
2019-03-01 00:35:22 +00:00
|
|
|
version=about['__version__'],
|
2017-10-10 20:11:05 +00:00
|
|
|
description=DESCRIPTION,
|
|
|
|
long_description=long_description,
|
2019-01-25 21:17:31 +00:00
|
|
|
long_description_content_type='text/markdown',
|
2017-10-10 20:11:05 +00:00
|
|
|
author=AUTHOR,
|
|
|
|
author_email=EMAIL,
|
|
|
|
url=URL,
|
2017-10-10 22:48:09 +00:00
|
|
|
packages=['pinhook'],
|
2019-08-27 19:12:26 +00:00
|
|
|
entry_points={
|
|
|
|
'console_scripts':
|
|
|
|
['pinhook=pinhook.cli:cli']
|
|
|
|
},
|
2017-10-10 20:11:05 +00:00
|
|
|
install_requires=REQUIRED,
|
2019-08-28 19:20:43 +00:00
|
|
|
extras_require=EXTRAS,
|
2017-10-10 20:11:05 +00:00
|
|
|
include_package_data=True,
|
|
|
|
license='MIT',
|
|
|
|
classifiers=[
|
|
|
|
# Trove classifiers
|
|
|
|
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
|
|
|
|
'License :: OSI Approved :: MIT License',
|
2018-10-10 17:49:33 +00:00
|
|
|
'Development Status :: 5 - Production/Stable',
|
2017-10-10 20:11:05 +00:00
|
|
|
'Programming Language :: Python',
|
2018-10-10 18:03:20 +00:00
|
|
|
'Programming Language :: Python :: 3',
|
2017-10-10 20:11:05 +00:00
|
|
|
'Programming Language :: Python :: 3.4',
|
|
|
|
'Programming Language :: Python :: 3.5',
|
|
|
|
'Programming Language :: Python :: 3.6',
|
2018-10-10 17:49:33 +00:00
|
|
|
'Programming Language :: Python :: 3.7',
|
2017-09-27 22:44:32 +00:00
|
|
|
],
|
2017-10-10 20:11:05 +00:00
|
|
|
# $ setup.py publish support.
|
|
|
|
cmdclass={
|
|
|
|
'upload': UploadCommand,
|
|
|
|
},
|
2017-09-27 22:44:32 +00:00
|
|
|
)
|