-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (50 loc) · 1.58 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python
import os
import re
import sys
try:
from setuptools import setup, find_packages
except ImportError:
sys.exit("""\nError: Setuptools is required for installation.
-> http://pypi.python.org/pypi/setuptools
or http://pypi.python.org/pypi/distribute\n""")
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, "README.rst")).read()
info = open(os.path.join(here, "miproman", "__init__.py")).read()
VERSION = re.compile(r'.*__version__ = "(.*?)"', re.S).match(info).group(1)
setup(
name="miproman",
version=VERSION,
description="Easy iTerm2 Profiles For Everyone!",
long_description=README,
author="Jatin Nagpal",
author_email="jatinn@outlook.com",
url="https://github.com/jatinn/miproman",
download_url="https://github.com/jatinn/miproman/tarball/0.1",
license="Apache License 2.0",
packages=find_packages(),
install_requires=[
"argparse",
"biplist",
],
entry_points = dict(
console_scripts=[
"add_profile = miproman:main",
]
),
include_package_data=True,
zip_safe=True,
classifiers=(
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python",
"Topic :: Internet",
"Topic :: Software Development",
"Topic :: Terminals",
"Topic :: System",
"Topic :: Utilities",
),
)