-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
58 lines (51 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
55
56
57
58
# -*- coding: utf-8 -*-
import os
import imp
from setuptools import setup, find_packages
__author__ = "Mahmoud Hashemi"
__contact__ = "mahmoud@hatnote.com"
__license__ = 'GPLv3'
__url__ = 'https://github.com/mahmoud/apatite'
CUR_PATH = os.path.abspath(os.path.dirname(__file__))
_version_mod_path = os.path.join(CUR_PATH, 'apatite', '_version.py')
_version_mod = imp.load_source('_version', _version_mod_path)
__version__ = _version_mod.__version__
setup(
name="apatite",
description="CLI for awesomer Awesome™ list management and analysis. Originally designed for managing https://github.com/mahmoud/awesome-python-applications",
author=__author__,
author_email=__contact__,
url=__url__,
license=__license__,
platforms='any',
version=__version__,
long_description=__doc__,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
entry_points={'console_scripts': ['apatite = apatite.__main__:main']},
install_requires=['ashes',
'attrs',
'boltons',
'face',
'ruamel.yaml',
'glom',
'hyperlink',
'schema',
'tqdm']
)
"""
Release process:
* tox # TODO
* git commit (if applicable)
* Remove dev suffix from apatite/_version.py version
* git commit -a -m "bump version for vX.Y.Z release"
* python setup.py sdist bdist_wheel upload
* git tag -a vX.Y.Z -m "brief summary"
* write CHANGELOG
* git commit
* bump apatite/_version.py version onto n+1 dev
* git commit
* git push
Versions are of the format YY.MINOR.MICRO, see calver.org for more details.
"""