-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
39 lines (32 loc) · 1020 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
34
35
36
37
38
39
import os
from setuptools import setup, Command
class CleanCommand(Command):
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 /tmp/gonullu/* /tmp/varpisi/*')
setup(name='Gonullu',
version='1.1.5',
description='Pisi Linux gonullu paket derleme uygulamasi',
url='https://github.com/PisiLinuxNew/gonullu',
author='Ilker Manap',
author_email='[email protected]',
maintainer='Muhammet Dilmac',
maintainer_email='[email protected]',
license='MIT',
packages=['gonullu'],
install_requires=[
'argparse', 'requests', 'docker-py', 'psutil', 'colorama', 'pyaml'
],
scripts=['bin/gonullu'],
include_package_data=True,
package_data={
'gonullu': ['config/*.yml']
},
zip_safe=False,
cmdclass={
'clean': CleanCommand,
})