-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 768 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (26 loc) · 768 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
from setuptools import find_packages
from setuptools import setup
setup(
name="sendgentoo",
version="0.1",
url="https://github.com/jakeogh/sendgentoo",
license="MIT",
author="jakeogh",
author_email="github.com@v6y.net",
description="Install Gentoo Linux",
packages=find_packages(exclude=["tests"]),
include_package_data=True,
zip_safe=False,
install_requires=[],
entry_points={
"console_scripts": [
"sendgentoosimple = sendgentoo.sendgentoosimple:sendgentoosimple",
"sendgentoo = sendgentoo.sendgentoo:sendgentoo",
],
},
classifiers=[
"Environment :: Console",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
],
)