Skip to content

Commit

Permalink
Updated setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
burtonrj committed Jun 24, 2023
1 parent a5762d7 commit d09e0c0
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
8 changes: 1 addition & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
[tool.poetry]
name = "cytotransform"
version = "0.1.1"
version = "0.1.2"
description = "Rapid transformations for cytometry data"
authors = ["Ross Burton <burtonrossj@gmail.com>"]
license = "MIT"
readme = "README.md"
include = ["cytotransform/logicle_ext/*.cpp", "cytotransform/logicle_ext/*.h"]

[tool.poetry.dependencies]
python = ">=3.11,<3.12"
Expand Down Expand Up @@ -47,11 +46,6 @@ default_section = "THIRDPARTY"
sections = "FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
skip = "__init__.py"

##### black configuration https://black.readthedocs.io/en/stable/usage_and_configuration/the_basics.html#configuration-via-a-file
[tool.black]
line-length = 88
target_version = ['py311']


##### pytest configuration: http://doc.pytest.org/en/latest/customize.html
[tool.pytest.ini_options]
Expand Down
14 changes: 12 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from pybind11.setup_helpers import Pybind11Extension
from pybind11.setup_helpers import Pybind11Extension, build_ext
from setuptools import setup

ext_modules = [
Expand All @@ -11,4 +11,14 @@
)
]

setup(name="cytotransform", version="0.1.1", ext_modules=ext_modules)
setup(
name="cytotransform",
version="0.1.2",
author="Ross Burton",
author_email="burtonrossj@gmail.com",
ext_modules=ext_modules,
extras_require={"test": "pytest"},
cmdclass={"build_ext": build_ext},
zip_safe=False,
python_requires=">=3.11",
)

0 comments on commit d09e0c0

Please sign in to comment.