1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
# -*- coding: utf-8 -*-
import os
from setuptools import find_packages, setup
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development",
"Topic :: Software Development :: Documentation",
"Topic :: Text Processing :: Markup",
]
def get_version():
"""Get version number of the package from version.py without importing core module."""
package_dir = os.path.abspath(os.path.dirname(__file__))
version_file = os.path.join(package_dir, 'src/seqdiag/__init__.py')
namespace = {}
with open(version_file, 'r') as f:
exec(f.read(), namespace)
return namespace['__version__']
setup(
name='seqdiag',
version=get_version(),
description='seqdiag generates sequence-diagram image from text',
long_description=open("README.rst").read(),
long_description_content_type='text/x-rst',
classifiers=classifiers,
keywords=['diagram', 'generator'],
author='Takeshi Komiya',
author_email='i.tkomiya@gmail.com',
url='http://blockdiag.com/',
download_url='http://pypi.python.org/pypi/seqdiag',
project_urls={
"Code": "https://github.com/blockdiag/nwdiag",
"Issue tracker": "https://github.com/blockdiag/nwdiag/issues",
},
license='Apache License 2.0',
py_modules=['seqdiag_sphinxhelper'],
packages=find_packages('src'),
package_dir={'': 'src'},
package_data={'': ['buildout.cfg']},
include_package_data=True,
python_requires=">=3.5",
install_requires=[
'blockdiag >= 1.5.0',
],
extras_require={
'testing': [
'nose',
'flake8',
'flake8-coding',
'flake8-copyright',
'flake8-isort',
'reportlab',
'docutils',
],
},
test_suite='nose.collector',
entry_points="""
[console_scripts]
seqdiag = seqdiag.command:main
""",
)
|