-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (34 loc) · 941 Bytes
/
setup.py
File metadata and controls
40 lines (34 loc) · 941 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
32
33
34
35
36
37
38
39
40
# !/usr/bin/env python
# -*- coding: utf-8 -*-
__author__ = 'ahmetdal'
from setuptools import setup, find_packages
entrypoints = {}
console_scripts = entrypoints['console_scripts'] = [
'versionmanager = src.bin.versionmanager:main',
]
# -*- %%% -*-
try:
long_description = open('README.md').read()
except IOError:
long_description = ''
setup(
name='version-manager',
version='0.8.5',
description="Version upgrader in all spesific files like setup.py, package.json, bower.json etc.",
author="Ahmet DAL",
author_email="ceahmetdal@gmail.com",
url="https://github.com/javrasya/version-manager",
platforms=['any'],
license='BSD',
packages=find_packages(),
zip_safe=False,
install_requires=[
'repoze.lru',
'colorama',
'semver',
'terminaltables'
],
include_package_data=True,
entry_points=entrypoints,
long_description=long_description
)