File size: 1,375 Bytes
065fee7 |
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 |
#!/usr/bin/python
from os.path import isfile
import os
import setuptools
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
from distutils.version import LooseVersion
import warnings
import io
import sys
if isfile("MANIFEST"):
os.unlink("MANIFEST")
if LooseVersion(setuptools.__version__) <= LooseVersion("24.3"):
warnings.warn("python_requires requires setuptools version > 24.3",
UserWarning)
class Unsupported(TestCommand):
def run(self):
sys.stderr.write("Running 'test' with setup.py is not supported. "
"Use 'pytest' or 'tox' to run the tests.\n")
sys.exit(1)
###
# Load metadata
def README():
with io.open('README.rst', encoding='utf-8') as f:
readme_lines = f.readlines()
# The .. doctest directive is not supported by PyPA
lines_out = []
for line in readme_lines:
if line.startswith('.. doctest'):
lines_out.append('.. code-block:: python3\n')
else:
lines_out.append(line)
return ''.join(lines_out)
README = README() # NOQA
setup(
use_scm_version={
'write_to': 'src/dateutil/_version.py',
},
## Needed since doctest not supported by PyPA.
long_description = README,
cmdclass={
"test": Unsupported
}
)
|