-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (27 loc) · 848 Bytes
/
setup.py
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
from setuptools import find_packages, setup
with open("README.md", "r") as readme_file:
readme = readme_file.read()
with open("requirements.txt", "r") as fh:
requirements = fh.readlines()
setup(
name="indy-rewards",
version="0.1.0",
author="Indigo Labs",
description="CLI application for distributing INDY rewards",
long_description=readme,
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=[
req for req in requirements if req.strip() and not req.strip().startswith("#")
],
python_requires=">=3.10",
classifiers=[
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
entry_points={
"console_scripts": [
"indy-rewards=indy_rewards.cli:rewards",
],
},
)