This repository has been archived by the owner on Aug 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 90
/
setup.py
101 lines (82 loc) · 2.92 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#!/usr/bin/env python3
# coding=utf-8
"""setuptools install script"""
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
import os
import sys
from setuptools import setup, find_packages, Command
HERE = os.path.abspath(os.path.dirname(__file__))
ABOUT = {}
with open(os.path.join(HERE, 'dharma', '__version__.py')) as fo:
exec(fo.read(), ABOUT) # pylint: disable=exec-used
def README():
with open("README.md") as fo:
return fo.read()
class PublishCommand(Command):
"""Command class for: setup.py publish"""
description = 'Build and publish the package.'
user_options = []
@staticmethod
def status(text):
"""Prints things in bold."""
print('\033[1m{0}\033[0m'.format(text))
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
try:
self.status('Removing previous builds…')
os.system('rm -rf {}'.format(os.path.join(HERE, 'dist')))
except OSError:
pass
self.status('Building Source and Wheel distribution ...')
os.system('{0} setup.py sdist bdist_wheel'.format(sys.executable))
self.status('Pushing git tags ...')
os.system('git tag v{0}'.format(ABOUT['__version__']))
os.system('git push origin v{0}'.format(ABOUT['__version__']))
self.status('Uploading the package to PyPI via Twine ...')
os.system('twine upload dist/*')
sys.exit()
if __name__ == "__main__":
setup(
version=ABOUT['__version__'],
name=ABOUT['__title__'],
license=ABOUT['__license__'],
keywords=ABOUT['__keywords__'],
description=ABOUT['__description__'],
long_description=README(),
long_description_content_type='text/markdown',
author=ABOUT['__author__'],
author_email=ABOUT['__author_email__'],
maintainer=ABOUT['__maintainer__'],
maintainer_email=ABOUT['__maintainer_email__'],
url=ABOUT['__url__'],
project_urls=ABOUT['__project_urls__'],
download_url=ABOUT['__download_url__'],
classifiers=[
'Topic :: Software Development :: Testing',
"Topic :: Security",
'Intended Audience :: Developers',
'Operating System :: OS Independent',
"Programming Language :: Python :: 3",
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)'
],
entry_points={
"console_scripts": [
"dharma = dharma:DharmaCommandLine.main"
]
},
packages=find_packages(),
package_data={
'dharma': [
'grammars/*',
'grammars/**/*'
]
},
cmdclass={
'publish': PublishCommand
}
)