File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -137,5 +137,5 @@ dmypy.json
137137# Cython debug symbols
138138cython_debug /
139139
140- # PyCharm stuff
140+ # PyCharm
141141.idea
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 11[metadata]
2- name = example-pkg-YOUR-USERNAME-HERE
2+ name = hyper-python
33version = 0.0.1
4- author = Example Author
5- author_email = author@example.com
6- description = A small example package
4+ author = Hyper
5+ author_email = support@hyper.co
6+ description = Python library for the Hyper API.
77long_description = file: README.md
88long_description_content_type = text/markdown
99license = MIT
10- url = https://github.com/pypa/sampleproject
10+ url = https://github.com/meta-labs/hyper-python
1111project_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'
1614classifiers =
1715 Programming Language :: Python :: 3
1816 License :: OSI Approved :: MIT License
Original file line number Diff line number Diff line change 44 long_description = fh .read ()
55
66setup (
7- name = 'hyper' ,
7+ name = 'hyper-python ' ,
88 version = '0.0.1' ,
99 author = 'Hyper' ,
1010 author_email = 'support@hyper.co' ,
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)
Original file line number Diff line number Diff line change 11from .license import License
2- from .error import RequestError
2+ from .error import InvalidRequestError
33
44api_key = None
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments