-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (28 loc) · 792 Bytes
/
setup.py
File metadata and controls
35 lines (28 loc) · 792 Bytes
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
SETUP_INFO = dict(
name = 'python',
version = '0.1',
author = 'Infinidat',
description = 'builds python',
long_description = (),
classifiers = [],
install_requires = ['setuptools', 'infi.execute'],
extras_require = {},
packages = [],
package_dir = {'': 'src'},
include_package_data = True,
entry_points = dict(
console_scripts = [
'test = scripts:test',
'build = scripts:build',
'pack = scripts:pack',
'clean = scripts:clean',
],
gui_scripts = [])
)
def setup():
from setuptools import setup as _setup
from setuptools import find_packages
SETUP_INFO['packages'] = find_packages('src')
_setup(**SETUP_INFO)
if __name__ == '__main__':
setup()