-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (46 loc) · 1.61 KB
/
setup.py
File metadata and controls
50 lines (46 loc) · 1.61 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import codecs
import os
from setuptools import setup, find_packages
this_dir = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(this_dir, 'README.rst'), encoding='utf-8') as f:
long_description = '\n' + f.read()
about = {}
with open(os.path.join(this_dir, 'uberfare', '__version__.py')) as f:
exec(f.read(), about)
setup(
name='uberfare',
version=about['__version__'],
description='A simple tool for periodically collecting Uber fares.',
long_description=long_description,
author='Kevin Lloyd Bernal',
author_email='kevinlloydbernal@gmail.com',
url='https://github.com/BurnzZ/uberfare',
license='MIT',
packages=find_packages(exclude=['tests']),
py_modules=['uberfare'],
install_requires=[
'Click',
'uber-rides',
'beautifultable'
],
python_requires='~=3.4',
entry_points={
'console_scripts': ['uberfare=uberfare:cli']
},
classifiers={
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Topic :: Software Development',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: System :: Monitoring',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython'
}
)