-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
40 lines (38 loc) · 1.07 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
39
40
from setuptools import setup, find_packages
from eflookup import __version__
setup(
name='eflookup',
version=__version__,
author='Joel Dubowy',
license='GPLv3+',
author_email='[email protected]',
packages=find_packages(),
scripts=[
'bin/fccs2ef',
'bin/fccs2seraef',
'bin/ct2ef',
'bin/fepsef',
'bin/crops2ef',
],
package_data={
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3.12",
"Operating System :: POSIX",
"Operating System :: MacOS"
],
url='https://github.com/pnwairfire/eflookup/',
description='Package supporting the look-up of emissions factors used to compute emissions from wildland fires.',
install_requires=[
"afscripting>=3.0.0,<4.0.0",
],
dependency_links=[
"https://pypi.airfire.org/simple/afscripting/"
],
tests_require=[
"pytest"
]
)