-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·53 lines (46 loc) · 1.54 KB
/
setup.py
File metadata and controls
executable file
·53 lines (46 loc) · 1.54 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python3
"""
Goodbye python3.4
https://discuss.python.org/t/python-download-stats-for-march-2019/1424
Usage statistics show that no single minor version X of 3.4.X has more than
.39%
python3.5+ is convenient to support because 16.04 ships with py3.5
"""
version = {}
with open("./src/yabc/version.py") as fp:
exec(fp.read(), version)
version = version["__version__"]
import setuptools
setuptools.setup(
version=version,
name="yabc",
python_requires=">=3.9",
author="Robert Karl",
maintainer="Robert Karl",
maintainer_email="robertkarljr@gmail.com",
install_requires=[
"delorean>=1.0.0",
"flask>=3.0",
"openpyxl",
"python-dateutil>=2.8.0",
"sqlalchemy>=2.0",
],
url="https://github.com/robertkarl/yabc",
description="A tax estimator for cryptocurrencies.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3 :: Only",
],
)