-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 872 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 872 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
from setuptools import setup, find_packages
# from setuptools.command.install import install
# from setuptools.command.develop import develop
# import pathlib
# import sys
# import platform
# import os
# import shutil
setup(
name='flame',
version='1.2.2',
license='GNU GPLv3 or posterior',
description='',
url='https://github.com/phi-grib/flame',
download_url='https://github.com/phi-grib/flame.git',
author='Manuel Pastor, Biel Stela, Jose Carlos Gomez',
author_email='manuel.pastor@upf.edu',
packages=find_packages(),
entry_points={
'console_scripts': ['flame=flame.flame_scr:main'],
},
# If any package contains *.txt or *.rst files, include them:
# package_data={'': ['*.yaml', '*.yml']},
package_data={'flame': ['config.yaml','children/*.yaml', 'children/*.docx']},
install_requires=['appdirs']
)