-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 759 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import os
from setuptools import setup
setup(
name = "ypkg2",
version = "27.0.0",
author = "Ikey Doherty",
author_email = "ikey@solus-project.com",
description = ("Solus YPKG build Tool"),
license = "GPL-3.0",
keywords = "example documentation tutorial",
url = "https://github.com/solus-project/ypkg",
packages=['ypkg2'],
scripts=['ypkg', 'ypkg-install-deps', 'ypkg-gen-history', 'ypkg-build', 'ybump', 'yupdate'],
classifiers=[
"License :: OSI Approved :: GPL-3.0 License",
],
package_data={'ypkg2': ['rc.yml']},
data_files = [("/usr/share/man/man1", ["man/ypkg.1", "man/ypkg-build.1", "man/ypkg-install-deps.1"]),
("/usr/share/man/man5", ["man/package.yml.5"])]
)