-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
60 lines (44 loc) · 1.2 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
#!/usr/bin/env python
# -*- coding: iso-8859-15 -*-
import os
from setuptools import setup
pj = os.path.join
# Setup script
name = 'groalea'
namespace = 'openalea'
pkg_name = 'openalea.groalea'
version = '1.0.0'
description = 'GroIMP / OpenAlea interface'
long_description = ''' '''
author = 'Reinhard Hoover, Long QinQin, Christophe Pradal'
author_email = ''
url = ''
license = 'GPL'
# Main setup
setup(
name="groalea",
version=version,
description=description,
long_description=long_description,
author=author,
author_email=author_email,
url=url,
license=license,
namespace_packages=["openalea"],
create_namespaces=True,
py_modules=[],
# pure python packages
packages=[pkg_name],
# python packages directory
package_dir={pkg_name: 'groalea'},
include_package_data=True,
package_data={'': ['*.png']},
# Add package platform libraries if any
zip_safe=False,
# Scripts
entry_points={'wralea': ['groalea = openalea.groalea']},
# Dependencies
setup_requires=['openalea.deploy'],
install_requires=[],
dependency_links=['http://openalea.gforge.inria.fr/pi'],
)