-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
38 lines (34 loc) · 1.08 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
from distutils.core import setup
import reggata
def read_file(filename):
"""Returns the text of the given filename."""
with open(filename, "r") as f:
text = f.read()
return text
setup(
name = "reggata",
packages = ['reggata',
'reggata.data',
'reggata.gui',
'reggata.ui',
'reggata.logic',
'reggata.parsers',
'reggata.tests'],
scripts = ["bin/reggata"],
data_files = [("/usr/share/applications/", ["share/reggata.desktop"]), ],
package_data = {'reggata': ['locale/*.qm']},
version = reggata.__version__,
description = reggata.__doc__,
author = reggata.__author__,
author_email = reggata.__author_email__,
license = reggata.__license__,
url = reggata.__url__,
download_url = reggata.__download_url__,
keywords = ["tags", "tagging", "documents", "files"],
long_description = read_file("./README.creole")
#install_requires=[
# 'ply',
# 'SQLAlchemy'
# 'PyQt4' # PyQt4 have to be installed manually anyway
#]
)