distutils -> setuptools
This commit is contained in:
parent
0426eccfd8
commit
48fb49ee44
11
MANIFEST.in
11
MANIFEST.in
|
@ -1,9 +1,6 @@
|
||||||
include LICENSE
|
include LICENSE CHANGELOG README.txt
|
||||||
include CHANGELOG
|
|
||||||
include README.txt
|
|
||||||
exclude README.mkd
|
exclude README.mkd
|
||||||
recursive-include test *
|
recursive-include test *
|
||||||
recursive-include libpathod/resources *
|
recursive-include libpathod *
|
||||||
recursive-include libpathod/templates *
|
recursive-include examples *
|
||||||
recursive-include libpathod/static *
|
recursive-exclude * *.pyc *.pyo *.swo *.swp
|
||||||
recursive-exclude test *.swo *.swp *.pyc
|
|
96
setup.py
96
setup.py
|
@ -1,90 +1,25 @@
|
||||||
from distutils.core import setup
|
from setuptools import setup, find_packages
|
||||||
import fnmatch, os.path
|
from codecs import open
|
||||||
|
import os
|
||||||
from libpathod import version
|
from libpathod import version
|
||||||
|
|
||||||
|
# Based on https://github.com/pypa/sampleproject/blob/master/setup.py
|
||||||
|
# and https://python-packaging-user-guide.readthedocs.org/
|
||||||
|
|
||||||
def _fnmatch(name, patternList):
|
here = os.path.abspath(os.path.dirname(__file__))
|
||||||
for i in patternList:
|
|
||||||
if fnmatch.fnmatch(name, i):
|
|
||||||
return True
|
|
||||||
return False
|
|
||||||
|
|
||||||
|
with open(os.path.join(here, 'README.txt'), encoding='utf-8') as f:
|
||||||
def _splitAll(path):
|
|
||||||
parts = []
|
|
||||||
h = path
|
|
||||||
while 1:
|
|
||||||
if not h:
|
|
||||||
break
|
|
||||||
h, t = os.path.split(h)
|
|
||||||
parts.append(t)
|
|
||||||
parts.reverse()
|
|
||||||
return parts
|
|
||||||
|
|
||||||
|
|
||||||
def findPackages(path, dataExclude=[]):
|
|
||||||
"""
|
|
||||||
Recursively find all packages and data directories rooted at path. Note
|
|
||||||
that only data _directories_ and their contents are returned -
|
|
||||||
non-Python files at module scope are not, and should be manually
|
|
||||||
included.
|
|
||||||
|
|
||||||
dataExclude is a list of fnmatch-compatible expressions for files and
|
|
||||||
directories that should not be included in pakcage_data.
|
|
||||||
|
|
||||||
Returns a (packages, package_data) tuple, ready to be passed to the
|
|
||||||
corresponding distutils.core.setup arguments.
|
|
||||||
"""
|
|
||||||
packages = []
|
|
||||||
datadirs = []
|
|
||||||
for root, dirs, files in os.walk(path, topdown=True):
|
|
||||||
if "__init__.py" in files:
|
|
||||||
p = _splitAll(root)
|
|
||||||
packages.append(".".join(p))
|
|
||||||
else:
|
|
||||||
dirs[:] = []
|
|
||||||
if packages:
|
|
||||||
datadirs.append(root)
|
|
||||||
|
|
||||||
# Now we recurse into the data directories
|
|
||||||
package_data = {}
|
|
||||||
for i in datadirs:
|
|
||||||
if not _fnmatch(i, dataExclude):
|
|
||||||
parts = _splitAll(i)
|
|
||||||
module = ".".join(parts[:-1])
|
|
||||||
acc = package_data.get(module, [])
|
|
||||||
for root, dirs, files in os.walk(i, topdown=True):
|
|
||||||
sub = os.path.join(*_splitAll(root)[1:])
|
|
||||||
if not _fnmatch(sub, dataExclude):
|
|
||||||
for fname in files:
|
|
||||||
path = os.path.join(sub, fname)
|
|
||||||
if not _fnmatch(path, dataExclude):
|
|
||||||
acc.append(path)
|
|
||||||
else:
|
|
||||||
dirs[:] = []
|
|
||||||
package_data[module] = acc
|
|
||||||
return packages, package_data
|
|
||||||
|
|
||||||
with open("README.txt", "rb") as f:
|
|
||||||
long_description = f.read()
|
long_description = f.read()
|
||||||
|
|
||||||
packages, package_data = findPackages("libpathod")
|
|
||||||
setup(
|
setup(
|
||||||
name="pathod",
|
name="pathod",
|
||||||
version=version.VERSION,
|
version=version.VERSION,
|
||||||
description="A pathological HTTP/S daemon for testing and stressing clients.",
|
description="A pathological HTTP/S daemon for testing and stressing clients.",
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
|
url="http://pathod.net",
|
||||||
author="Aldo Cortesi",
|
author="Aldo Cortesi",
|
||||||
author_email="aldo@corte.si",
|
author_email="aldo@corte.si",
|
||||||
url="http://pathod.net",
|
license="MIT",
|
||||||
packages=packages,
|
|
||||||
package_data=package_data,
|
|
||||||
entry_points={
|
|
||||||
'console_scripts': [
|
|
||||||
"pathod = libpathod.main:pathod",
|
|
||||||
"pathoc = libpathod.main:pathoc"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"License :: OSI Approved :: MIT License",
|
"License :: OSI Approved :: MIT License",
|
||||||
"Development Status :: 5 - Production/Stable",
|
"Development Status :: 5 - Production/Stable",
|
||||||
|
@ -92,11 +27,22 @@ setup(
|
||||||
"Programming Language :: Python",
|
"Programming Language :: Python",
|
||||||
"Programming Language :: Python :: 2",
|
"Programming Language :: Python :: 2",
|
||||||
"Topic :: Internet",
|
"Topic :: Internet",
|
||||||
|
"Topic :: Internet :: WWW/HTTP",
|
||||||
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
|
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
|
||||||
"Topic :: Software Development :: Testing",
|
"Topic :: Software Development :: Testing",
|
||||||
"Topic :: Software Development :: Testing :: Traffic Generation",
|
"Topic :: Software Development :: Testing :: Traffic Generation",
|
||||||
"Topic :: Internet :: WWW/HTTP",
|
|
||||||
],
|
],
|
||||||
|
|
||||||
|
packages=find_packages(),
|
||||||
|
include_package_data=True,
|
||||||
|
|
||||||
|
entry_points={
|
||||||
|
'console_scripts': [
|
||||||
|
"pathod = libpathod.main:pathod",
|
||||||
|
"pathoc = libpathod.main:pathoc"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'netlib>=%s' % version.MINORVERSION,
|
'netlib>=%s' % version.MINORVERSION,
|
||||||
"requests>=2.4.1",
|
"requests>=2.4.1",
|
||||||
|
|
Loading…
Reference in New Issue