Skip to content

Commit b1920ad

Browse files
SamWilsnlightclient
authored andcommitted
Little bit of packaging clean-up
1 parent 82618e0 commit b1920ad

File tree

2 files changed

+7
-10
lines changed

2 files changed

+7
-10
lines changed

setup.cfg

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,14 @@
22
name = eth1spec
33
description = Ethereum specification, provided as a Python package for tooling
44
and testing
5+
long_description = file: README.md
6+
long_description_content_type = text/markdown
57
version = 0.1.0
68
url = https://github.com/ethereum/eth1.0-specs
9+
license_files =
10+
LICENSE.md
11+
classifiers =
12+
License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
713

814
[options]
915
packages = eth1spec, eth1spec/evm

setup.py

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,3 @@
1-
import pathlib
2-
31
import setuptools
42

5-
here = pathlib.Path(__file__).parent.resolve()
6-
7-
long_description = (here / "README.md").read_text(encoding="utf-8")
8-
9-
setuptools.setup(
10-
long_description=long_description,
11-
long_description_content_type="text/markdown",
12-
)
3+
setuptools.setup()

0 commit comments

Comments
 (0)