-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
31 lines (28 loc) · 969 Bytes
/
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
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
setup(
name = "PyCryptax",
version = "1.0.0",
description = \
"UK Income and Capital Gains Tax Calculator for Cryptocurrencies",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
author = "Matthew Mitchell",
author_email = "[email protected]",
url = "https://github.com/MatthewLM/PyCryptax",
packages = ["pycryptax"],
license = "MIT",
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Topic :: Office/Business :: Financial :: Accounting",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Environment :: Console"
],
entry_points = {
"console_scripts" : ["pycryptax = pycryptax.__main__:main"]
}
)