blob: 5c4f5cea40f2ab0f5d7f1275fb3743bea056a4c3 (
plain)
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
|
import os
from setuptools import setup, find_packages
prefix = '/'
share_dir = 'usr/share/swiftstory/'
data_files = list()
for n in os.walk('usr'):
if len(n[2]) == 0:
continue
files = list()
for f in n[2]:
files.append(n[0] + '/' + f)
data_files.append((prefix + n[0] + '/', files))
print(data_files)
setup(
name = 'swiftstory',
description = "SwiftStory game: We're not out of the woods yet.",
version = '0.1',
author = 'Olivier Gayot',
author_email = 'olivier.gayot@sigexec.com',
packages = find_packages(),
data_files = data_files,
entry_points = {
'console_scripts': [
'swiftstoryd = swiftstory.__main__:main',
],
}
)
|