-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (51 loc) · 1.31 KB
/
setup.py
File metadata and controls
57 lines (51 loc) · 1.31 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
54
55
56
57
#!/usr/bin/env python
"""
setup.py file for eagleeye
"""
import os
from setuptools import setup, find_packages
prefix = os.environ.get("prefix", "/usr")
name = 'eagleeye'
version = '0.3.0'
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name=name,
version=version,
author="Qurban Ullah",
author_email="qurbanullah@avouch.org>",
description="Avouch Linux package installer",
long_description=long_description,
long_description_content_type="text/markdown",
url="<https://github.com/avouchlinux/eagleeye>",
packages=find_packages(exclude=('test')),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GPL License",
"Operating System :: OS Independent",
],
command_options={
'build_sphinx': {
'project': ('setup.py', name),
'version': ('setup.py', version),
'release': ('setup.py', version),
}
},
entry_points={
# Install a script
'console_scripts': [
'ee = eagleeye.main:main',
],
},
python_requires='>=3.10',
install_requires=[
'zstandard',
'pathlib',
'tqdm',
'shutil',
'tempfile',
'tarfile',
'argparse',
'xml.etree.ElementTree',
],
)