This repository has been archived by the owner on Mar 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·47 lines (39 loc) · 1.45 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
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
"""
pip setup file
"""
from setuptools import setup, find_packages
__library__ = "archives"
__version__ = "VERSION"
__user__ = "https://github.com/jpetrucciani"
with open("README.md", encoding="UTF-8") as readme:
LONG_DESCRIPTION = readme.read()
with open("requirements.txt", encoding="UTF-8") as requirements:
INSTALL_REQUIRES = requirements.read().split("\n")
INSTALL_REQUIRES = [x.strip() for x in INSTALL_REQUIRES if x.strip()]
setup(
name=__library__,
version=__version__,
description=("a new way to do python code documentation"),
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author="Jacobi Petrucciani",
author_email="[email protected]",
url=f"{__user__}/{__library__}.git",
download_url=f"{__user__}/{__library__}.git",
license="MIT",
packages=find_packages(),
install_requires=INSTALL_REQUIRES,
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
entry_points={"console_scripts": ["archives=archives.archives:archives"]},
zip_safe=False,
)