-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (25 loc) · 729 Bytes
/
setup.py
File metadata and controls
30 lines (25 loc) · 729 Bytes
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
from setuptools import setup
with open("requirements.txt") as fp:
requirements = fp.read().splitlines()
with open("README.md") as fp:
long_description = fp.read()
setup(
name="spore.py",
author="LEv145",
version="1.1.1",
description="Spore REST API client",
install_requires=requirements,
packages=["spore_api"],
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.7.0",
project_urls={
"Git": "https://github.com/LEv145/spore.py",
"Issue tracker": "https://github.com/LEv145/spore.py/issues",
},
entry_points="""
[console_scripts]
spore_cli=spore_api.__main__:cli
"""
)