File: setup.py

package info (click to toggle)
vcversioner 2.16.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 160 kB
  • ctags: 105
  • sloc: python: 451; makefile: 151
file content (41 lines) | stat: -rw-r--r-- 1,289 bytes parent folder | download | duplicates (3)
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
# Copyright (c) Aaron Gallagher <_@habnab.it>
# See COPYING for details.

import vcversioner

# not this again
from setuptools import setup


with open('README.rst', 'r') as infile:
    long_description = infile.read()

setup(
    name='vcversioner',
    version=vcversioner.find_version().version,
    description='Use version control tags to discover version numbers',
    long_description=long_description,
    author='Aaron Gallagher',
    author_email='_@habnab.it',
    url='https://github.com/habnabit/vcversioner',
    classifiers=[
        'Development Status :: 3 - Alpha',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: ISC License (ISCL)',
        'Operating System :: OS Independent',
        'Programming Language :: Python :: 2',
        'Programming Language :: Python :: 2.6',
        'Programming Language :: Python :: 2.7',
        'Programming Language :: Python :: 3',
        'Programming Language :: Python :: 3.3',
        'Programming Language :: Python :: 3.4',
        'Programming Language :: Python :: 3.5',
        'Topic :: Software Development :: Version Control',
    ],
    license='ISC',

    py_modules=['vcversioner'],
    entry_points={
        'distutils.setup_keywords': ['vcversioner = vcversioner:setup'],
    },
)