-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
112 lines (93 loc) · 2.76 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
102
103
104
105
106
107
108
109
110
111
112
import os
import sys
from setuptools import (
setup,
find_packages,
Command,
)
from codecs import open
from os import path
from shutil import rmtree
__version__ = '0.6.1'
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
# get the dependencies and installs
with open(path.join(here, 'requirements.txt'), encoding='utf-8') as f:
all_reqs = f.read().split('\n')
install_requires = [
x.strip()
for x
in all_reqs
if 'git+' not in x
]
dependency_links = [
x.strip().replace('git+', '')
for x
in all_reqs
if x.startswith('git+')
]
class PublishCommand(Command):
"""Support setup.py publish."""
description = 'Build and publish the package.'
user_options = []
@staticmethod
def status(s):
"""Prints things in bold."""
print('\033[1m{0}\033[0m'.format(s))
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
try:
self.status('Removing previous builds…')
rmtree(os.sep.join(('.', 'dist')))
except FileNotFoundError:
pass
self.status('Building Source and Wheel (universal) distribution…')
os.system(
'{0} setup.py sdist bdist_wheel --universal'.format(sys.executable),
)
self.status('Uploading the package to PyPi via Twine…')
os.system('twine upload dist/*')
sys.exit()
setup(
name='phix',
version=__version__,
author='Kit La Touche',
author_email='[email protected]',
description='Make writing your Sphinx docs a little easier.',
long_description=long_description,
url='https://github.com/wlonk/phix',
download_url='https://github.com/wlonk/phix/tarball/' + __version__,
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: MIT License',
],
keywords=['Sphinx'],
packages=find_packages(exclude=['docs', 'tests*']),
python_requires='>=3.0',
entry_points={
'console_scripts': [
'phix=phix:main',
],
},
include_package_data=True,
install_requires=install_requires,
dependency_links=dependency_links,
setup_requires=['pytest-runner'],
tests_require=['pytest', 'pytest-mock'],
# $ setup.py publish support.
cmdclass={
'publish': PublishCommand,
},
)