-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (35 loc) · 1.17 KB
/
setup.py
File metadata and controls
39 lines (35 loc) · 1.17 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
from setuptools import find_packages, setup
package_name = "runeq"
with open("README.md") as r:
long_description = r.read()
with open("requirements/common.txt", "r") as r:
install_requires = r.read().splitlines()
setup(
name=package_name,
version="0.18.1",
author="Rune Labs",
maintainer_email="support@runelabs.io",
description="Query data from Rune Labs APIs",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="rune labs api query data",
url="https://github.com/rune-labs/runeq-python",
packages=find_packages(),
install_requires=install_requires,
test_suite="tests",
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
entry_points={
"console_scripts": [
"runeq=cli:cli",
],
},
)