forked from phi-grib/flame
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 778 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 778 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
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.0.0-rc2',
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']},
install_requires=['appdirs']
)