-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (32 loc) · 1.09 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
setup(
name='rst2accounts',
version='1.0.0',
description='Calculate totals per operations in your ReST table accounts.',
long_description=open('README.rst').read(),
author=u'François Magimel',
author_email='[email protected]',
url='https://github.com/Linkid/rst2accounts',
license='BSD',
packages=find_packages(exclude=['tests']),
classifiers=[
"Environment :: Console",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent"
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business :: Financial :: Accounting",
"Topic :: Office/Business :: Financial :: Spreadsheet",
],
entry_points={
'console_scripts': [
'rst2accounts=rst2accounts.main:main',
],
},
)