-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (25 loc) · 794 Bytes
/
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
import os
from setuptools import setup, Command
class CleanCommand(Command):
"""Custom clean command to tidy up the project root."""
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
os.system('rm -vrf ./build ./dist ./*.pyc ./*.tgz ./*.egg-info')
setup(
name='informed_search',
url='https://github.com/nemanja-rakicevic/informed_search',
author='Nemanja Rakicevic',
version='0.1',
license='MIT',
description='Code for Informed Search in discrete parameter space',
long_description=open('README.md').read(),
cmdclass={
'clean': CleanCommand,
},
extra_link_args=['-L/usr/lib/x86_64-linux-gnu/']
)