-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 835 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 835 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
import setuptools
setuptools.setup(
name="roundup-csv",
version="1.1.1",
description="Rounds up transactions in CSV file",
url="https://github.com/reedhaffner/CSV-RoundUps",
packages=setuptools.find_packages(),
author="Reed Haffner",
author_email="reedhaffner@pm.me",
license="GPL 3.0",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business :: Financial :: Spreadsheet"
],
entry_points={
"console_scripts": ["roundup = roundup.roundup:roundup"]
}
)