Skip to content

Commit 10d2309

Browse files
committed
update
1 parent ac6eeb7 commit 10d2309

File tree

11 files changed

+15
-25
lines changed

11 files changed

+15
-25
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,5 +137,5 @@ dmypy.json
137137
# Cython debug symbols
138138
cython_debug/
139139

140-
# PyCharm stuff
140+
# PyCharm
141141
.idea

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ See the [API docs](https://docs.hyper.co/reference).
1010
## Installation
1111

1212
```sh
13-
pip install --upgrade hyper
13+
pip install --upgrade hyper-python
1414
```
1515

1616
### Requirements

setup.cfg

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,16 @@
11
[metadata]
2-
name = example-pkg-YOUR-USERNAME-HERE
2+
name = hyper-python
33
version = 0.0.1
4-
author = Example Author
5-
author_email = [email protected]
6-
description = A small example package
4+
author = Hyper
5+
author_email = [email protected]
6+
description = Python library for the Hyper API.
77
long_description = file: README.md
88
long_description_content_type = text/markdown
99
license = MIT
10-
url = https://github.com/pypa/sampleproject
10+
url = https://github.com/meta-labs/hyper-python
1111
project_urls =
12-
Documentation = https://docs.hyper.co/reference
12+
Bug Documentation = https://docs.hyper.co/reference
1313
Source Code = https://github.com/meta-labs/hyper-python
14-
install_requirements =
15-
requests >= 2.20; python_version >= '3.0'
1614
classifiers =
1715
Programming Language :: Python :: 3
1816
License :: OSI Approved :: MIT License

setup.py

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
long_description = fh.read()
55

66
setup(
7-
name='hyper',
7+
name='hyper-python',
88
version='0.0.1',
99
author='Hyper',
1010
author_email='[email protected]',
@@ -14,17 +14,15 @@
1414
license='MIT',
1515
url='https://github.com/meta-labs/hyper-python',
1616
project_urls={
17-
"Documentation": "https://docs.hyper.co/reference",
18-
"Source Code": "https://github.com/meta-labs/hyper-python",
17+
'Documentation': 'https://docs.hyper.co/reference',
18+
'Source Code': 'https://github.com/meta-labs/hyper-python',
1919
},
20-
install_requires=[
21-
'requests >= 2.20; python_version >= "3.0"',
22-
],
2320
classifiers=[
2421
'Programming Language :: Python :: 3',
2522
'License :: OSI Approved :: MIT License',
2623
'Operating System :: OS Independent',
2724
],
28-
packages=find_packages(include=['hyper']),
29-
python_requires=">=3.0",
25+
package_dir={'': 'src'},
26+
packages=find_packages(where='src'),
27+
python_requires='">=3.0"',
3028
)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from .license import License
2-
from .error import RequestError
2+
from .error import InvalidRequestError
33

44
api_key = None
File renamed without changes.
File renamed without changes.
File renamed without changes.

tests/test-wrapper.py

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)