-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 936 Bytes
/
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
# vim:fileencoding=utf-8:noet
import setuptools
with open("README.md", "r") as file:
long_description = file.read()
setuptools.setup(
name = 'powerline-xcodeversion',
version = '1.0.0',
description = 'A Powerline segment for showing the active version of Xcode',
long_description = long_description,
long_description_content_type = "text/markdown",
keywords = 'powerline status prompt xcode version',
license = 'MIT',
author = 'Ben Chatelain',
author_email = 'ben@octop.ad',
url = 'https://github.com/phatblat/powerline-xcodeversion',
packages = setuptools.find_packages(),
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Terminals"
]
)