python-benedict/setup.py

70 lines
2.1 KiB
Python
Raw Normal View History

2019-05-17 11:13:15 +00:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
2019-06-01 15:22:00 +00:00
import os, sys
2019-05-17 11:13:15 +00:00
exec(open('benedict/metadata.py').read())
2019-05-17 11:13:15 +00:00
github_url = 'https://github.com/fabiocaccamo'
package_name = 'python-benedict'
package_path = os.path.abspath(os.path.dirname(__file__))
long_description_file_path = os.path.join(package_path, 'README.rst')
long_description = ''
try:
with open(long_description_file_path) as f:
long_description = f.read()
except IOError:
pass
2019-06-01 15:22:00 +00:00
if sys.version_info <= (2, 7):
requirements = [
'ftfy==4.4.3',
'python-dateutil',
'python-slugify',
# 'pyyaml',
# 'xmltodict',
]
else:
requirements = [
'ftfy', # >= 5.0.0, < 6.0.0;
'python-dateutil', # >= 2.6.0, < 3.0.0',
'python-slugify', # >= 1.2.0, < 4.0.0',
# 'pyyaml',
# 'xmltodict',
]
2019-05-17 11:13:15 +00:00
setup(
name=package_name,
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
include_package_data=True,
version=__version__,
description=__description__,
long_description=long_description,
author=__author__,
2019-06-01 15:22:00 +00:00
author_email=__email__,
2019-05-17 11:13:15 +00:00
url='%s/%s' % (github_url, package_name, ),
download_url='%s/%s/archive/%s.tar.gz' % (github_url, package_name, __version__, ),
keywords=['benedict', 'python', 'dict', 'keypath', 'parse', 'utility'],
2019-06-01 15:22:00 +00:00
install_requires=requirements,
2019-05-17 11:13:15 +00:00
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
2019-06-01 15:22:00 +00:00
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
2019-05-17 11:13:15 +00:00
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Build Tools',
],
license='MIT',
test_suite='tests'
)