-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (30 loc) · 1.06 KB
/
setup.py
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
#!/usr/bin/python
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
setup(
name='cave filter',
version='0.1',
packages=find_packages(),
data_files = [("/etc", ['cavefilter/cave_filter.cfg'])],
# installing unzipped
zip_safe = False,
# predefined extension points, e.g. for plugins
entry_points = """
[console_scripts]
cave_filter = cavefilter.cave_filter:main
""",
# pypi metadata
author = "Stefan Kögl",
# FIXME: add author email
author_email = "[email protected]",
description = "a tool to easily update a gentoo system managed by the paludis package manager",
# FIXME: add long_description
long_description = """You get a list of packages to update. You can choose which packages to update. Only use this if the manual update would be too time consuming or you just want to pick some packages. When you know what you are doing"
""",
# FIXME: add license
license = "GPL v3",
# FIXME: add keywords
keywords = "",
# FIXME: add download url
url = "",
)