-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 1012 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 1012 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
29
30
31
from setuptools import setup
with open('README.rst') as readme:
long_description = readme.read()
setup(
name='pybart',
version=__import__('pybart').__version__,
description=(
'Real time BART (Bay Area Rapid Transit) information in your '
'terminal!'),
long_description=long_description,
author='Eric Wang',
author_email='gnawrice@gmail.com',
url='https://github.com/ericdwang/pybart',
packages=['pybart'],
entry_points={'console_scripts': ['bart = pybart.main:main']},
classifiers=[
'Environment :: Console :: Curses',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
license='BSD 3-Clause',
keywords=['bart', 'bay', 'area', 'rapid', 'transit'],
)