-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 835 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
import os
from dotenv import load_dotenv
from setuptools import setup, find_packages
load_dotenv()
pkgVersion = os.getenv('RITES_PKG_VERSION')
setup(
name="rites",
version=pkgVersion,
description="Reclipse's Initial Try at Enhanced Simplicity or R.I.T.E.S. A simple and lightweight QoL module.",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author="Reclipse",
maintainer="Reclipse",
url="https://github.com/ReclipseTheOne/rites",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=[
'colored>=2.2.4'
]
)