-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
56 lines (46 loc) · 1.67 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
# coding=utf-8
"""
setup.py
~~~~~~~~
Setup script.
:copyright: (c) 2018 by Ali Ghaffaari.
:license: MIT, see LICENSE for more details.
"""
import os
import codecs
from setuptools import setup, find_packages
_HERE = os.path.abspath(os.path.dirname(__file__))
# Get package release information.
_PACKAGE_NAME = "vcfy"
_RELEASE_INFO = {}
with open(os.path.join(_HERE, _PACKAGE_NAME, 'release.py')) as release_file:
exec(release_file.read(), _RELEASE_INFO) # pylint: disable=exec-used
# Get the long description from the README file.
with codecs.open(os.path.join(_HERE, 'README.md'), encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
_PYPINAME = "vcfy"
_PACKAGES = find_packages(exclude=['test'])
_GITHUB_BASE = "https://github.com/cartoonist/"
_VCS_URL = _GITHUB_BASE + _PYPINAME
_TAR_URL = _VCS_URL + "/tarball/" + _RELEASE_INFO['__version__']
setup(
name=_PYPINAME,
packages=_PACKAGES,
package_data=_RELEASE_INFO['__package_data__'],
version=_RELEASE_INFO['__version__'],
description=_RELEASE_INFO['__description__'],
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author=_RELEASE_INFO['__author__'],
author_email=_RELEASE_INFO['__email__'],
license=_RELEASE_INFO['__license__'],
url=_VCS_URL,
download_url=_TAR_URL,
keywords=_RELEASE_INFO['__keywords__'],
classifiers=_RELEASE_INFO['__classifiers__'],
install_requires=_RELEASE_INFO['__requires__'],
tests_require=_RELEASE_INFO['__tests_require__'],
extras_require=_RELEASE_INFO['__extras_require__'],
setup_requires=_RELEASE_INFO['__setup_requires__'],
entry_points=_RELEASE_INFO['__entry_points__'],
)