-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (32 loc) · 1.01 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
"""setup tools control"""
from setuptools import setup
version = '0.0.1'
reqs = ['numpy']
setup(
name='debt-balance',
packages=['balancer', 'test', 'cli'],
setup_requires=['flake8'],
test_suite='test',
entry_points={
"console_scripts": ['payment-balance = cli.cli:main']
},
version=version,
description="A tool for evenly sharing the costs of a trip.",
long_description="A tool for evenly sharing the costs of a trip",
classifiers=[
'License :: OSI Approved :: MIT License',
'Development Status :: 1 - Planning',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: Other/Proprietary License',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Utilities'
],
keyword='money vacation trip finance',
license='MIT',
install_requires=reqs,
author="Luke Duncan",
author_email="[email protected]",
url='http://www.lukejduncan.com',
)