-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (41 loc) · 1.5 KB
/
setup.py
File metadata and controls
53 lines (41 loc) · 1.5 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# coding=utf-8
from urllib.parse import urljoin
from setuptools import find_packages
from setuptools import setup
from setuptools.command.install import install
from xargcomplete.attribute import __author__
from xargcomplete.attribute import __author_email__
from xargcomplete.attribute import __description__
from xargcomplete.attribute import __project__
from xargcomplete.attribute import __urlhome__
from xargcomplete.attribute import __version__
__urlcode__ = __urlhome__
__urldocs__ = __urlhome__
__urlbugs__ = urljoin(__urlhome__, "issues")
def all_requirements():
def read_requirements(path: str):
with open(path, "r", encoding="utf-8") as rhdl:
return rhdl.read().splitlines()
requirements = read_requirements("requirements.txt")
return requirements
class CustomInstallCommand(install):
"""Customized setuptools install command"""
def run(self):
install.run(self) # Run the standard installation
# Execute your custom code after installation
setup(
name=__project__,
version=__version__,
description=__description__,
url=__urlhome__,
author=__author__,
author_email=__author_email__,
project_urls={"Source Code": __urlcode__,
"Bug Tracker": __urlbugs__,
"Documentation": __urldocs__},
packages=find_packages(include=["xargcomplete*"], exclude=["xargcomplete.unittest"]), # noqa:E501
install_requires=all_requirements(),
cmdclass={
"install": CustomInstallCommand,
}
)