-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (24 loc) · 781 Bytes
/
setup.py
File metadata and controls
32 lines (24 loc) · 781 Bytes
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
# -*- coding: utf-8 -*-
from setuptools import setup
packages = ["bupy"]
package_data = {"": ["*"]}
with open("requirements.txt") as f:
required = f.read().splitlines()
install_requires = required
entry_points = {"console_scripts": ["bupy = bupy.cli:app"]}
setup_kwargs = {
"name": "bupy",
"version": "0.1.2",
"description": "A Python toolkit for Butane and Ignition",
"author": "QuickVM",
"author_email": "hello@quickvm.com",
"maintainer": "QuickVM",
"maintainer_email": "hello@quickvm.com",
"url": "https://github.com/quickvm/bupy",
"packages": packages,
"package_data": package_data,
"install_requires": install_requires,
"entry_points": entry_points,
"python_requires": ">=3.8.10,<4.0.0",
}
setup(**setup_kwargs)