Skip to content

Commit ac6eeb7

Browse files
committed
added setup.cfg
1 parent e89e28e commit ac6eeb7

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

setup.cfg

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
[metadata]
2+
name = example-pkg-YOUR-USERNAME-HERE
3+
version = 0.0.1
4+
author = Example Author
5+
author_email = [email protected]
6+
description = A small example package
7+
long_description = file: README.md
8+
long_description_content_type = text/markdown
9+
license = MIT
10+
url = https://github.com/pypa/sampleproject
11+
project_urls =
12+
Documentation = https://docs.hyper.co/reference
13+
Source Code = https://github.com/meta-labs/hyper-python
14+
install_requirements =
15+
requests >= 2.20; python_version >= '3.0'
16+
classifiers =
17+
Programming Language :: Python :: 3
18+
License :: OSI Approved :: MIT License
19+
Operating System :: OS Independent
20+
21+
[options]
22+
package_dir =
23+
= src
24+
packages = find:
25+
python_requires = >=3.0
26+
27+
[options.packages.find]
28+
where = src

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
author_email='[email protected]',
1111
description='Python library for the Hyper API.',
1212
long_description=long_description,
13-
long_description_content_type='',
13+
long_description_content_type='text/markdown',
1414
license='MIT',
1515
url='https://github.com/meta-labs/hyper-python',
1616
project_urls={

0 commit comments

Comments
 (0)