Skip to content
Snippets Groups Projects
Commit d1191fe1 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

1.5

parent 1b1f7891
No related branches found
Tags v2.0.22rc3
No related merge requests found
......@@ -2,6 +2,8 @@
* fixed logging
* `snakehouse` doesn't need cython and satella installed in advance
* added `find_all`
* made available for PyPy users
# v1.4
......
# coding: utf-8
[metadata]
name = snakehouse
keywords = cython, extension, multiple, pyx
version = 1.5
long-description = file: README.md
long-description-content-type = text/markdown; charset=UTF-8
license_files = LICENSE
......@@ -9,8 +11,8 @@ author_email = piotrm@smok.co
description = Utilities for packing multiple pyx files into a single Cython extension
url = https://github.com/smok-serwis/snakehouse
project-urls =
Code = https://github.com/smok-serwis/snakehouse
Issue tracker = https://github.com/smok-serwis/snakehouse/issues
Code = https://github.com/smok-serwis/snakehouse
Issue tracker = https://github.com/smok-serwis/snakehouse/issues
classifier =
Programming Language :: Python
Programming Language :: Python :: 3.5
......@@ -19,13 +21,31 @@ classifier =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython
Operating System :: POSIX
Programming Language :: Python :: Implementation :: PyPy
Operating System :: OS Independent
Development Status :: 5 - Production/Stable
License :: OSI Approved :: MIT License
Topic :: Software Development :: Code Generators
Topic :: Software Development :: Build Tools
[options]
install_requires =
Cython
mako
satella
python_requires = !=2.7.*,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*
packages = find:
package_dir =
snakehouse
[options.packages.find]
exclude =
docs
example
[options.package_data]
snakehouse = templates/*.mako
[pycodestyle]
max-line-length = 100
......@@ -33,5 +53,5 @@ max-line-length = 100
max-line-length = 100
[bdist_wheel]
universal = 1
universal = 0
from setuptools import setup, find_packages
from setuptools import setup
setup(keywords=['cython', 'extension', 'multiple', 'pyx'],
packages=find_packages(include=['snakehouse']),
version='1.5a7',
install_requires=[
'Cython', 'mako', 'satella>=2.14.46',
],
python_requires='!=2.7.*,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*',
package_data={
'snakehouse': ['templates/*.mako']
},
package_dir={'snakehouse': 'snakehouse'},
)
setup()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment