-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
55 lines (46 loc) · 1.66 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
from versionner import utils
utils.validate_python_version()
from codecs import open
from os import path
from setuptools import setup, find_packages
BASE_DIR = path.abspath(path.dirname(__file__))
with open(path.join(BASE_DIR, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='versionner',
version='1.5.3',
description='versionner helps manipulating version of the project.',
long_description=long_description,
long_description_content_type='text/markdown',
url='http://msztolcman.github.io/versionner/',
author='Marcin Sztolcman',
author_email='[email protected]',
license='MIT',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Utilities',
'Topic :: Software Development',
'Topic :: Software Development :: Documentation',
'Topic :: Software Development :: Version Control',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
install_requires=['argparse', 'semver'],
packages=find_packages(),
package_data={'': ['LICENSE']},
include_package_data=True,
keywords='version management',
entry_points={
'console_scripts': [
'ver=versionner.cli:main',
'versionner=versionner.cli:main',
],
},
)