-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
71 lines (59 loc) · 1.94 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
"""This module contains setup instructions for yakutils."""
import codecs
import os
import sys
from shutil import rmtree
from setuptools import Command
from setuptools import setup
THIS_DIR = os.path.abspath(os.path.dirname(__file__))
README = os.path.join(THIS_DIR, "README.md")
with codecs.open(README, encoding="utf-8") as fh:
long_description = "\n" + fh.read()
class UploadCommand(Command):
"""Support setup.py publish."""
description = "Build and publish the package."
user_options = []
@staticmethod
def status(s):
"""Print in bold."""
print(f"\033[1m{s}\033[0m")
def initialize_options(self):
"""Initialize options."""
pass
def finalize_options(self):
"""Finialize options."""
pass
def run(self):
"""Upload release to Pypi."""
try:
self.status("Removing previous builds ...")
rmtree(os.path.join(THIS_DIR, "dist"))
except Exception:
pass
self.status("Building Source distribution ...")
os.system(f"{sys.executable} setup.py sdist")
self.status("Uploading the package to PyPI via Twine ...")
os.system("twine upload dist/*")
sys.exit()
setup(
name="yakutils",
version="2.0.0",
author="Nick Ficano",
author_email="[email protected]",
packages=["yakutils"],
url="https://github.com/nficano/yakutils",
license="The Unlicense",
package_data={"": ["LICENSE"]},
classifiers=[
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Programming Language :: Python",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
description="A really lazy package",
include_package_data=True,
long_description_content_type="text/markdown",
long_description=long_description,
zip_safe=True,
cmdclass={"upload": UploadCommand},
)