-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
34 lines (31 loc) · 1 KB
/
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
33
34
import setuptools
try:
from src.pbar import __version__ as prj_version # get project version
except RuntimeError:
prj_version = "dev"
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="PBar2",
version=prj_version,
author="David Losantos (DarviL82)",
author_email="davidlosantos89@gmail.com",
description="Display customizable progress bars on the terminal easily.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://darvil82.github.io/PBar",
project_urls={
"Tracker": "https://github.com/DarviL82/PBar/issues",
"Documentation": "https://github.com/DarviL82/PBar/wiki"
},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.9",
)