-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 815 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 815 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
26
27
28
"""
This module provides the setup guidelines.
"""
import os
from distutils.core import setup
## Setup now:
setup(
name="accfifo",
version="0.2.1.dev0",
description="A FIFO accounting calculator",
long_description=open(
os.path.join(os.path.abspath(os.path.dirname(__file__)), "README.rst")
).read(),
long_description_content_type="text/x-rst",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
"Topic :: Software Development :: Libraries",
],
keywords=["accounting", "fifo"],
author="Vehbi Sinan Tunalioglu",
author_email="vst@vsthost.com",
url="https://github.com/vst/accfifo",
packages=["accfifo"],
)