-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·36 lines (32 loc) · 984 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
#!/usr/bin/env python
# coding: utf-8
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
setup(
name='ubik-toolbelt',
version='0.1',
description='Ubik toolbelt for management',
long_description=open('README.md').read(),
license=open("LICENSE").read(),
author="Geoffrey Lehée",
author_email="[email protected]",
url='https://github.com/socketubs/Ubik-toolbelt/',
keywords="ubik package toolbelt linux",
packages = ['ubik_toolbelt'],
scripts=['scripts/ubik-package', 'scripts/ubik-repo'],
install_requires=['docopt==0.5.0'],
classifiers=(
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7')
)