-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (39 loc) · 1.15 KB
/
setup.py
File metadata and controls
43 lines (39 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
"""Setup module."""
import setuptools
with open("README.md", "r", encoding="utf-8") as f_file:
long_description = f_file.read()
extras = {
"test": [
"pytest >=2.7.3",
]
}
setuptools.setup(
name="juungle",
version="0.6.2",
author="Eduardo Elias",
author_email="camponez@gmail.com",
description="Juungle python package for juungle.net",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
keywords="juungle.net api nfts",
url="https://github.com/Juungle/juungle-python",
project_urls={
"Bug Tracker": "https://github.com/Juungle/juungle-python/issues",
"Source Code": "https://github.com/Juungle/juungle-python",
},
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Utilities",
],
install_requires=[
'requests'
],
extras_require=extras,
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.6",
)