-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (33 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
VERSION = '0.2.1'
requires = [
'antelope_core>=0.2.1'
]
"""
Revision history
0.2.1 - 21 Jul 2023 - Subfrags comes home-- complete changes throughout the system, impossible to recount.
0.1.7 - 11 Aug 2021 - TRAVIS release
0.1.3 - 30 Dec 2020 - First public release
"""
setup(
name="antelope_foreground",
version=VERSION,
author="Brandon Kuczenski",
author_email="[email protected]",
install_requires=requires,
url="https://github.com/AntelopeLCA/foreground",
summary="A foreground model building implementation",
long_description_content_type='text/markdown',
long_description=open('README.md').read(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering"
],
python_requires='>=3.6',
packages=find_packages()
)