forked from spice-herald/detanalysis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
60 lines (52 loc) · 1.78 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
import os
import glob
import shutil
from setuptools import setup, find_packages, Command
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
class CleanCommand(Command):
"""Custom clean command to tidy up the project root."""
CLEAN_FILES = './build ./dist ./*.pyc ./*.tgz ./*.egg-info'.split(' ')
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
here = os.path.dirname(os.path.abspath(__file__))
for path_spec in self.CLEAN_FILES:
# Make paths absolute and relative to this path
abs_paths = glob.glob(os.path.normpath(os.path.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' % os.path.relpath(path))
shutil.rmtree(path)
setup(
name="detanalysis",
version="0.3.0",
description="Data Analysis Package",
long_description=long_description,
long_description_content_type='text/markdown',
author="Bruno Serfass",
author_email="[email protected]",
url="https://github.com/spice-herald/detanalysis",
license_files = ('LICENSE', ),
packages=find_packages(),
zip_safe=False,
cmdclass={
'clean': CleanCommand,
},
install_requires=[
'numpy',
'matplotlib',
'astropy',
'pytesdaq>=0.3.3',
'vaex',
'tabulate',
],
)