-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (33 loc) · 1.21 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
from glob import glob
from os.path import abspath, basename, dirname, join, normpath, relpath
from shutil import rmtree
from setuptools import setup, find_packages
from setuptools import Command
here = normpath(abspath(dirname(__file__)))
class CleanCommand(Command):
"""
Custom clean command to tidy up the root folder.
"""
CLEAN_FILES = './build ./dist ./*.pyc ./*.tgz ./*.egg-info ./__pycache__'.split(' ')
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
global here
for path_spec in self.CLEAN_FILES:
# Make paths absolute and relative to this path
abs_paths = glob(normpath(join(here, path_spec)))
for path in [str(p) for p in abs_paths]:
if not path.startswith(here):
# Die if path in CLEAN_FILES is absolute + outside this directory
raise ValueError("%s is not a path inside %s" % (path, here))
print('removing %s' % relpath(path))
rmtree(path)
setup(
cmdclass={'clean': CleanCommand},
name='Yaae',
version='1.0',
packages=find_packages()
)