-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (31 loc) · 716 Bytes
/
setup.py
File metadata and controls
40 lines (31 loc) · 716 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
28
29
30
31
32
33
34
35
36
37
38
from setuptools import setup
import os
def package_files(directory):
paths = []
for (path, directories, filenames) in os.walk(directory):
for filename in filenames:
paths.append(os.path.join('..', path, filename))
return paths
extra_files = package_files('mhs')
setup(
name='mhs',
version='1.0.0',
packages=['mhs'],
package_data={'': extra_files},
url='',
license='',
author='Diego Pinheiro',
author_email='',
description='Mapping the Health System'
)
#
# setup(
# name='mhs',
# version='1.0.0',
# packages=['mhs'],
# url='',
# license='',
# author='Diego Pinheiro',
# author_email='',
# description=''
# )