-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 881 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
# with open("README.md", 'r') as f:
# long_description = f.read()
setup(
name='ignition',
version='0.0.4',
description='Hit the ground running on your fresh Ubuntu installation.',
license="GPL 3+",
long_description="The Linux world is full of apps. You could be looking for an app that does something, only to find that there are literally hundreds of options. Ignition will show you common apps for certain categories and explain their little nuances in an easy format. Just choose the ones to install, and Ignition will start the engine.",
author='Josh L',
# author_email='foomail@foo.com',
# url="http://www.foopackage.com/",
packages=['ignition'], #same as name
install_requires=[], #external packages as dependencies
# scripts=[
# 'scripts/cool',
# 'scripts/skype',
# ]
)