Skip to content

Commit

Permalink
WIP conda-forge package
Browse files Browse the repository at this point in the history
See  #114 (Conda package)
  • Loading branch information
akaihola committed Mar 28, 2021
1 parent a2d1365 commit dde83f2
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
{% set data = {{ load_setup_py_data() }}}
{% set name = "{{ data.name }}" %}
{% set version = "{{ data.version }}" %}


package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 3a840c2cedec7e4d13c26c450d94f31bd872375450a0c057b9276cc9c2dbad5c

build:
noarch: python
number: 0
skip: true # [py<36]
entry_points:
- darker = darker.__main__:main
script: {{ PYTHON }} -m pip install . -vv

requirements:
host:
- pip
- python
run:
- black >=20.8b1
- dataclasses # [py<37]
- python
- toml
- typing-extensions # [py<38]

test:
imports:
- darker
- darker.tests
commands:
- pip check
- darker --help
requires:
- pip

about:
home: https://github.com/akaihola/darker
summary: {{ data.description }}
license: BSD-3-Clause
license_family: BSD
license_file: LICENSE.rst
doc_url: https://github.com/akaihola/darker/blob/master/README.rst
dev_url: https://github.com/akaihola/darker

extra:
recipe-maintainers:
- akaihola

0 comments on commit dde83f2

Please sign in to comment.